-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
119 lines (95 loc) · 2.89 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/////////////////////////////////////////////////////
typedef struct MyClass MyClass;
MyClass* new_MyClass();
void MyClass_setI(MyClass* this, int i);
int MyClass_getI(MyClass* this);
struct MyClass {
int i;
void (* const setI)(MyClass *this, int i);
int (* const getI)(MyClass *this);
} MyClass_def = {1, MyClass_setI, MyClass_getI};
MyClass* new_MyClass() {
MyClass *o = malloc(sizeof(MyClass));
memcpy(o, &MyClass_def, sizeof MyClass_def);
return o;
}
void MyClass_setI(MyClass* this, int i) {
this->i = i;
}
int MyClass_getI(MyClass* this) {
return this->i;
}
/////////////////////////////////////////////////////
typedef struct MyChildClass MyChildClass;
MyChildClass* new_MyChildClass();
void MyChildClass_setI(MyChildClass* this, int i);
int MyChildClass_getI(MyChildClass* this);
void MyChildClass_setM(MyChildClass* this, int m);
int MyChildClass_getM(MyChildClass* this);
struct MyChildClass {
MyClass parent;
int m;
void (* const setI)(MyChildClass *this, int i);
int (* const getI)(MyChildClass *this);
void (* const setM)(MyChildClass *this, int m);
int (* const getM)(MyChildClass *this);
} MyChildClass_def = { {1, MyClass_setI, MyClass_getI}, 2, MyChildClass_setI, MyChildClass_getI, MyChildClass_setM, MyChildClass_getM};
MyChildClass* new_MyChildClass() {
MyChildClass *o = malloc(sizeof(MyChildClass));
memcpy(o, &MyChildClass_def, sizeof MyChildClass_def);
return o;
}
void MyChildClass_setM(MyChildClass* this, int m) {
this->m = m;
}
int MyChildClass_getM(MyChildClass* this) {
return this->m;
}
void MyChildClass_setI(MyChildClass* this, int i) {
this->parent.i = i;
}
int MyChildClass_getI(MyChildClass* this) {
return this->parent.i;
}
/////////////////////////////////////////////////////
int main() {
MyClass a = MyClass_def;
printf("a.getI() = %d\n", a.getI(&a));
a.setI(&a, 776);
printf("a.setI(776)\n");
printf("a.getI() = %d\n", a.getI(&a));
MyClass *b = new_MyClass();
printf("b->getI() = %d\n", b->getI(b));
b->setI(b, 12345);
printf("b->setI(12345)\n");
printf("b->getI() = %d\n", b->getI(b));
printf("\n");
MyChildClass *c = new_MyChildClass();
c->setI(c, 345);
printf("c->setI(345)\n");
printf("c->getI() = %d\n", c->getI(c));
printf("c->getM() = %d\n", c->getM(c));
MyChildClass *d = new_MyChildClass();
printf("d->getI() = %d\n", d->getI(d));
printf("d->getM() = %d\n", d->getM(d));
d->setM(d, 5555);
printf("d->setM(5555)\n");
printf("d->getM() = %d\n", d->getM(d));
printf("\n");
MyChildClass e = MyChildClass_def;
printf("e.getM() = %d\n", e.getM(&e));
e.setM(&e, 98);
printf("e.setM(98)\n");
printf("e.getM() = %d\n", e.getM(&e));
printf("e.getI() = %d\n", e.getI(&e));
e.setI(&e, 99);
printf("e.setI(99)\n");
printf("e.getI() = %d\n", e.getI(&e));
MyChildClass f = MyChildClass_def;
printf("f.getI() = %d\n", f.getI(&f));
printf("f.getM() = %d\n", f.getM(&f));
return 0;
}