摘要: 1 // #表示:对应变量字符串化 2 // ##表示:把宏参数名与宏定义代码序列中的标识符连接在一起,形成一个新的标识符 3 #include 4 #define trace(x, format) printf(#x " = %" #format "\n", x) 5 #define trace2(i) trace(x##... 阅读全文
posted @ 2017-04-17 11:54 德德deiTySHIn 阅读(745) 评论(0) 推荐(0) 编辑