?? commoninter.h
字號:
#ifndef COMMONINTER_H#define COMMONINTER_H#include "poly.h"#include "plist.h"#include "str.h"typedef int (*tyEquals) (poly, poly);typedef plist (*tyPlist) (poly);typedef int (*tyHashCode) (poly);typedef str (*tyToString) (poly);typedef struct commonInter *commonInter;typedef struct tyVft *tyVft;struct tyVft{ tyEquals equals; tyPlist getPlist; tyHashCode hashCode; tyToString toString;};struct commonInter{ tyVft vft;};tyVft getVft (poly data);#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -