码迷,mamicode.com
首页 > 其他好文 > 详细

#define DEBUG 用法

时间:2014-10-13 17:01:20      阅读:985      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   strong   sp   on   log   代码   ef   

#define DEBUG用来简化调试和版本发布,当开启debug模式,在程序首行加入这行代码即可。当需要发布版本时,去除debug输出信息,只需要注释掉这行代码。

#define DEBUG
main()
{
#ifdef DEBUG
    printf("Debugging\n");
#else
    printf("Not debugging\n");
#endif
    printf("Running\n");
}

Reference

[1].http://blog.163.com/m13591120447_1/blog/static/2163791892013127104854730/?COLLCC=1999350648

#define DEBUG 用法

标签:blog   http   ar   strong   sp   on   log   代码   ef   

原文地址:http://my.oschina.net/lvyi/blog/330169

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!