- 论坛徽章:
- 0
|
- class Flag {
- public:
- enum Type { BOOL, INT, FLOAT, STRING };
- Flag(const char* file, const char* name, const char* comment, Type type);
- Type type() const { return type_; }
- private:
- const char* file_;
- const char* name_;
- const char* comment_;
- Type type_;
- };
- Flag::Flag(const char* file, const char* name, const char* comment, Type type)
- : file_(file), name_(name), comment_(comment),type_(type)
- {
- printf("type_=%d\n", type_);
- }
- #define DEFINE_FLAG(type, c_type, name, default, comment) \
- static Flag Flag_##name(__FILE__, #name, (comment), Flag::type)
- #define DEFINE_bool(name, default, comment) \
- DEFINE_FLAG(BOOL, bool, name, default, comment)
- #define DEFINE_int(name, default, comment) \
- DEFINE_FLAG(INT, int, name, default, comment)
- int _tmain(int argc, _TCHAR* argv[])
- {
- DEFINE_bool(help, false, "Prints this message");
- DEFINE_int(XX, 0, "Prints this message");
- system("pause");
- return 0;
- }
复制代码 就是static Flag Flag_##name(__FILE__, #name, (comment), Flag::type)这句,第4个参数传一个
函数指针进去何解,构造函数明明需要的是Type类型的变量啊,,还有type_这个变量是在哪里初始化的呢? |
|