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

C++ #define,#ifndef和#ifdef

时间:2019-10-18 12:27:32      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:def   pac   ifd   end   out   stream   src   main   代码   

有时候我们在编程的时候,希望有些代码在我们需要时编译,不需要时不编译,也就是让它快速注释,这时候即可以考虑#ifdef和#endif,它们会使我们的编译器进行选择性编译。

#include<iostream>  
#include<cstdio>  
using namespace std;
#define TEST 
int main()
{
#ifdef TEST  
	cout << "Hello World" << endl;
#endif  
	return 0;
}

  技术图片

如果注释掉#define TEST

#include<iostream>  
#include<cstdio>  
using namespace std;
//#define TEST 
int main()
{
#ifdef TEST  
	cout << "Hello World" << endl;
#endif  
	return 0;
}

  

技术图片

 

 注释小#define TEST该#ifdef为#ifndef

#include<iostream>  
#include<cstdio>  
using namespace std;
//#define TEST 
int main()
{
#ifndef TEST  
	cout << "Hello World" << endl;
#endif  
	return 0;
}

  

技术图片

 

C++ #define,#ifndef和#ifdef

标签:def   pac   ifd   end   out   stream   src   main   代码   

原文地址:https://www.cnblogs.com/hsy1941/p/11697488.html

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