/** * 功能:吧变量和表达式转换成字符串 * 时间:2014年8月13日08:57:32 * 作者:cutter_point */ #include<iostream> #include<cstdlib> using namespace std; //定义一个宏,使用便捷输出,用#来吧变量字符串化 #define P(A) cout<<#A<<" : "<<A<<endl; int main() { int a=1, b=2, c=3; P(a); P(b); P(c); P(a+b); P((c-a)/b); system("pause"); return 0; }
【ThinkingInC++】16、吧变量和表达式转换成字符串
时间: 2024-10-27 05:11:21