码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2018-10-29 16:06:04      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:需要   没有   mes   -o   测试的   name   str   fine   ifd   

今天发现一个好用的东西,自己在编写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~~~!!!

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

 

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

标签:需要   没有   mes   -o   测试的   name   str   fine   ifd   

原文地址:https://www.cnblogs.com/maq-aegean/p/9870688.html

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