免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 5155 | 回复: 5
打印 上一主题 下一主题

[C++] 【C++】第一次看到这种用法。。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-07-26 11:20 |只看该作者 |倒序浏览
  1. class Flag {
  2. public:
  3.         enum Type { BOOL, INT, FLOAT, STRING };

  4.         Flag(const char* file, const char* name, const char* comment, Type type);

  5.         Type type() const  { return type_; }

  6. private:
  7.         const char* file_;
  8.         const char* name_;
  9.         const char* comment_;

  10.         Type type_;
  11. };

  12. Flag::Flag(const char* file, const char* name, const char* comment, Type type)
  13.         : file_(file), name_(name), comment_(comment),type_(type)
  14. {
  15.         printf("type_=%d\n", type_);
  16. }

  17. #define DEFINE_FLAG(type, c_type, name, default, comment) \
  18.         static Flag Flag_##name(__FILE__, #name, (comment), Flag::type)

  19. #define DEFINE_bool(name, default, comment) \
  20.         DEFINE_FLAG(BOOL, bool, name, default, comment)
  21. #define DEFINE_int(name, default, comment) \
  22.         DEFINE_FLAG(INT, int, name, default, comment)


  23. int _tmain(int argc, _TCHAR* argv[])
  24. {
  25.         DEFINE_bool(help, false, "Prints this message");
  26.         DEFINE_int(XX, 0, "Prints this message");

  27.         system("pause");
  28.         return 0;
  29. }
复制代码
就是static Flag Flag_##name(__FILE__, #name, (comment), Flag::type)这句,第4个参数传一个
函数指针进去何解,构造函数明明需要的是Type类型的变量啊,,还有type_这个变量是在哪里初始化的呢?

论坛徽章:
0
2 [报告]
发表于 2013-07-26 12:10 |只看该作者
有人了解吗,,这代码在VS2008中可以编译运行,结果正确的。
是C++的什么特性吗?

论坛徽章:
4
双子座
日期:2014-08-28 10:08:002015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:58:112015年亚洲杯之阿联酋
日期:2015-03-13 03:25:15
3 [报告]
发表于 2013-07-26 13:03 |只看该作者
本帖最后由 weishuo1999 于 2013-07-26 13:04 编辑

#define DEFINE_FLAG(type, c_type, name, default, comment) \
        static Flag Flag_##name(__FILE__, #name, (comment), Flag::type)

这里仔细看  传入的type为BOOL 那么 下面那句就成了
static Flag Flag_##name(__FILE__, #name, (comment), Flag::BOOL)

这就是初始化了。

论坛徽章:
0
4 [报告]
发表于 2013-07-26 13:29 |只看该作者
weishuo1999 发表于 2013-07-26 13:03
#define DEFINE_FLAG(type, c_type, name, default, comment) \
        static Flag Flag_##name(__FILE_ ...

看叉了,,

多谢~

论坛徽章:
0
5 [报告]
发表于 2013-07-30 11:02 |只看该作者
观夜天象 发表于 2013-07-26 11:20
就是static Flag Flag_##name(__FILE__, #name, (comment), Flag::type)这句,第4个参数传一个
函数指针进 ...


type只是宏参数,你要看替换后的,如果还是type,那就是引用函数了,不过实际是BOOL之类的,所以OK。

论坛徽章:
36
子鼠
日期:2013-08-28 22:23:29黄金圣斗士
日期:2015-12-01 11:37:51程序设计版块每日发帖之星
日期:2015-12-14 06:20:00CU十四周年纪念徽章
日期:2015-12-22 16:50:40IT运维版块每日发帖之星
日期:2016-01-25 06:20:0015-16赛季CBA联赛之深圳
日期:2016-01-27 10:31:172016猴年福章徽章
日期:2016-02-18 15:30:3415-16赛季CBA联赛之福建
日期:2016-04-07 11:25:2215-16赛季CBA联赛之青岛
日期:2016-04-29 18:02:5915-16赛季CBA联赛之北控
日期:2016-06-20 17:38:50技术图书徽章
日期:2016-07-19 13:54:03程序设计版块每日发帖之星
日期:2016-08-21 06:20:00
6 [报告]
发表于 2013-07-30 13:27 |只看该作者
第一次看到有人问这个问题,跟帖留名
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP