C++中#define,#ifdef和#endif的作用

今天发现一个好用的东西,自己在编写code时经常需要测试,但是每次呢测试的代码写了删删了写。很麻烦,运行也不美观。希望运行时不再显示之前测试好的代码,那边的测试代码就得全部注释或者删除再编译;

今天无意发现这个#define,#ifdef 和#endif 有这么个作用!

举例如下:

/*************************************************************************
> File Name: main.cpp
> Author: 笔耕先生
> Mail: balabala@sjtu.edu.cn
> Created Time: 2018年10月29日 星期一 14时42分35秒
************************************************************************/

#include<iostream>
#include<string>

using namespace std;

#define test_debug

int main(){
string a;
cout<<"Please say you love me: " <<endl;
cin >> a;
#ifdef test_debug
cout << "Hahahaha~~~Mua~~~" <<endl;
#endif

return 0;
}

编译:

➜ test g++ -g main.cpp -o abc

运行结果如下:

➜ test ./abc

Please say you love me:
I love you
Hahahaha~~~Mua~~~

如果不想看到测试的那段,直接将#define test_debug双斜杠(//)注释掉即可

然后编译运行结果如下:

➜ test ./abc

Please say you love me: 
I love you
没有了最后一句:Hahahaha~~~Mua~~~!!!

是不是很神奇,反正觉得挺好玩,挺实用!

 

posted @ 2018-10-29 14:58  笔耕先生  阅读(760)  评论(0编辑  收藏  举报