[C/C++基礎]-C/C++_#ifdef 範例
[C/C++基礎]-C/C++_#ifdef 範例
由於今天有人在問#ifdef應用,所以順便寫一份C/C++_#ifdef 範例,歡迎有興趣的同好也來C/P一下。
#include <iostream>
//#define Compiled 1
//#define Compiled 0
using namespace std;
int main()
{
cout << "Hello world!" << endl;
#ifdefined(Compiled)//有定義就會動
cout << "#if defined(Compiled)" << endl;
#if(Compiled)//有定義且為真就會動
cout << "#if(Compiled)" << endl;
for(int i=0;i<9;i++)
cout << "Hello world!" << endl;
#endif
#endif
return 0;
}
|