码迷,mamicode.com
首页 > 移动开发 > 详细

definition to expand macro then apply to pragma message

时间:2017-05-09 13:49:52      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:pragma macro

/* Some test definition here */

#define DEFINED_BUT_NO_VALUE

#define DEFINED_INT 1

#define DEFINED_STR "ABC"


/* definition to expand macro then apply to pragma message */

#define VALUE_TO_STRING(x) #x

#define VALUE(x) VALUE_TO_STRING(x)

#define VAR_NAME_VALUE(var) #var "="  VALUE(var)


/* Some example here */

#pragma message(VAR_NAME_VALUE(NOT_DEFINED))

#pragma message(VAR_NAME_VALUE(DEFINED_BUT_NO_VALUE))

#pragma message(VAR_NAME_VALUE(DEFINED_INT))

#pragma message(VAR_NAME_VALUE(DEFINED_STR))


definition to expand macro then apply to pragma message

标签:pragma macro

原文地址:http://zhiyuandai.blog.51cto.com/9640630/1923562

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