Re: [討論] 念完資工之後...
※ 引述《tinlans ( )》之銘言:
: 你又要如何讓新的 subclass 擁有更多的 member functions,
: 而又不需要動到原有的 class 定義本身呢?
: 還是說你打算徹底利用那個 void *d;,
: 然後寫出極其可觀的 macros 或 functions 去 access 裡面的某個 offset,
: 來實現 subclass 特有的 data members 和 member functions 的功能嗎?
: 因為你註解打的是 extended data,
: 所以我就小好奇的問一下了。
你要正式一點的設計嗎?
嗯...
typedef int work(_class* c, void* d);
typedef struct _class {
int p; // parent classes list id
int o; // associated objects list id
int d; // object data list id
int f; // functions list id
} _class;
int add_parent (int p, int c); // parents id, child class
int add_object (int o, int c); // objects id, child object id
int add_data (int d, const void* p, int s); // data id, data, size
int add_function(int f, work* x); // functions id, function
int get_class(int c, _class* d); // class id, output class data
int get_parent(int p, int n, int* c); // parents id, index, class id
int get_object(int o, int n, int* c); // objects id, index, object id
int get_data (int d, int n, void* p, int s); // data id, index, data, size
int get_function(int f, int n, work* f); // functions id, index, function
int get_fun_class(int f, int* c); // functions id, class id
int new_class(int c, _class* d); // class id, output data, return new class id
// --------------------
_class root_class;
int root_work(_class* c, void* d);
int i = new_class(-1, &root_class);
int j = add_data(root_class.d, "Hello", 6);
int k = add_function(root_class.f, root_work);
_class root_obj;
work* f;
int e = new_class(i, &root_obj); // root_obj is an object and also a class
int g = add_function(root_obj.f, root_work);
get_function(e, g, f);
(*f)(e, NULL); // execute first member function of root_obj
大約就是像這樣的東西。
--
※ 編輯: semop 來自: 61.222.173.26 (01/05 14:09)
討論串 (同標題文章)
完整討論串 (本文為第 11 之 18 篇):
22
91
CSSE 近期熱門文章
PTT數位生活區 即時熱門文章