1. 程式人生 > >C define用法例子

C define用法例子

#include <iostream>

using namespace std;

/*
規則1: 
用巨集定義表示式時,要使用完備的括號。
#define RECTANGLE_AREA(a, b) ((a) * (b))

規則2:
規則5.2 將巨集所定義的多條表示式放在大括號中。
說明:更好的方法是多條語句寫成do while(0)的方式。


*/

#define test 1+2+3
//define只是一個簡單的替換, 最好加個括號。 
#define test_brackets (1 + 2 + 3)
//換行,新增\之後應該立即回車, 否則會報錯。作用類似於未完代續。
#define test_newline (1 \
                        + 2 + 3\
                    )

void printFoo(int x)
{
    cout << "2--> " << x << endl;
}

//如果有變數的話, 需要(x)
#define foo(x) \
    cout << "1--> " << x << endl;\
    printFoo(x);

//這種方式是最符合規範的。
#define foo_do_while(x)\
    do\
    {\
        cout << "1--> " << x << endl;\
        printFoo(x);\
    }while(0)
    

int main()
{
    cout << test << endl;
    cout << test*test << endl;
    cout << test_brackets * test_brackets << endl;
    cout << test_newline << endl;

    foo(20);
    foo(30);

    system("pause");
}