[C/C++基礎]-C/C++_#ifdef 範例

[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;
}

 

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *