C++ 預(yù)處理器

c++ 預(yù)處理器

預(yù)處理器是一些指令,指示編譯器在實(shí)際編譯之前所需完成的預(yù)處理。

所有的預(yù)處理器指令都是以井號(#)開頭,只有空格字符可以出現(xiàn)在預(yù)處理指令之前。預(yù)處理指令不是 c++ 語句,所以它們不會以分號(;)結(jié)尾。

我們已經(jīng)看到,之前所有的實(shí)例中都有 #include 指令。這個宏用于把頭文件包含到源文件中。

c++ 還支持很多預(yù)處理指令,比如 #include、#define、#if、#else、#line 等,讓我們一起看看這些重要指令。

 

1. #define 預(yù)處理

#define 預(yù)處理指令用于創(chuàng)建符號常量。該符號常量通常稱為宏,指令的一般形式是:

#define macro-name replacement-text 

當(dāng)這一行代碼出現(xiàn)在一個文件中時,在該文件中后續(xù)出現(xiàn)的所有宏都將會在程序編譯之前被替換為 replacement-text。例如:

#include  using namespace std;

#define pi 3.14159
int main ()
{
 
    cout << "value of pi :" << pi << endl; 

    return 0;
}

現(xiàn)在,讓我們測試這段代碼,看看預(yù)處理的結(jié)果。假設(shè)源代碼文件已經(jīng)存在,接下來使用 -e 選項(xiàng)進(jìn)行編譯,并把結(jié)果重定向到 test.p?,F(xiàn)在,如果您查看 test.p 文件,將會看到它已經(jīng)包含大量的信息,而且在文件底部的值被改為如下:

$gcc -e test.cpp > test.p... int main () {  
    cout << "value of pi :" << 3.14159 << endl; 

    return 0; }

 

2. 函數(shù)宏

您可以使用 #define 來定義一個帶有參數(shù)的宏,如下所示:

#include  using namespace std;

#define min(a,b) (((a)<(b)) ? a : b)

int main ()
{
   int i, j;
   i = 100;
   j = 30;
   cout <<"the minimum is " << min(i, j) << endl;

    return 0;
}

當(dāng)上面的代碼被編譯和執(zhí)行時,它會產(chǎn)生下列結(jié)果:

the minimum is 30

 

3. 條件編譯

有幾個指令可以用來有選擇地對部分程序源代碼進(jìn)行編譯。這個過程被稱為條件編譯。

條件預(yù)處理器的結(jié)構(gòu)與 if 選擇結(jié)構(gòu)很像。請看下面這段預(yù)處理器的代碼:

#ifndef null
   #define null 0
#endif

您可以只在調(diào)試時進(jìn)行編譯,調(diào)試開關(guān)可以使用一個宏來實(shí)現(xiàn),如下所示:

#ifdef debug
   cerr <<"variable x = " << x << endl; #endif 

如果在指令 #ifdef debug 之前已經(jīng)定義了符號常量 debug,則會對程序中的 cerr 語句進(jìn)行編譯。您可以使用 #if 0 語句注釋掉程序的一部分,如下所示:

#if 0
   不進(jìn)行編譯的代碼
#endif

讓我們嘗試下面的實(shí)例:

#include  using namespace std;
#define debug

#define min(a,b) (((a)<(b)) ? a : b)

int main ()
{
   int i, j;
   i = 100;
   j = 30;
#ifdef debug
   cerr <<"trace: inside main function" << endl;
#endif

#if 0
   /* 這是注釋部分 */
   cout << mkstr(hello c++) << endl;
#endif

   cout <<"the minimum is " << min(i, j) << endl;

#ifdef debug
   cerr <<"trace: coming out of main function" << endl;
#endif
    return 0;
}

當(dāng)上面的代碼被編譯和執(zhí)行時,它會產(chǎn)生下列結(jié)果:

trace: inside main function
the minimum is 30
trace: coming out of main function

 

4. # 和 ## 運(yùn)算符

# 和 ## 預(yù)處理運(yùn)算符在 c++ 和 ansi/iso c 中都是可用的。# 運(yùn)算符會把 replacement-text 令牌轉(zhuǎn)換為用引號引起來的字符串。

請看下面的宏定義:

#include  using namespace std;

#define mkstr( x ) #x

int main ()
{
    cout << mkstr(hello c++) << endl;

    return 0;
} 

當(dāng)上面的代碼被編譯和執(zhí)行時,它會產(chǎn)生下列結(jié)果:

hello c++

讓我們來看看它是如何工作的。不難理解,c++ 預(yù)處理器把下面這行:

cout << mkstr(hello c++) << endl; 

轉(zhuǎn)換成了:

cout << "hello c++" << endl; 

## 運(yùn)算符用于連接兩個令牌。下面是一個實(shí)例:

#define concat( x, y )  x ## y

當(dāng) concat 出現(xiàn)在程序中時,它的參數(shù)會被連接起來,并用來取代宏。例如,程序中 concat(hello, c++) 會被替換為 "hello c++",如下面實(shí)例所示。

#include  using namespace std;

#define concat(a, b) a ## b
int main()
{
   int xy = 100;
   
   cout << concat(x, y);
   return 0;
}

當(dāng)上面的代碼被編譯和執(zhí)行時,它會產(chǎn)生下列結(jié)果:

100

讓我們來看看它是如何工作的。不難理解,c++ 預(yù)處理器把下面這行:

cout << concat(x, y); 

轉(zhuǎn)換成了:

cout << xy; 

 

5. c++ 中的預(yù)定義宏

c++ 提供了下表所示的一些預(yù)定義宏:

描述
__line__ 這會在程序編譯時包含當(dāng)前行號。
__file__ 這會在程序編譯時包含當(dāng)前文件名。
__date__ 這會包含一個形式為 month/day/year 的字符串,它表示把源文件轉(zhuǎn)換為目標(biāo)代碼的日期。
__time__ 這會包含一個形式為 hour:minute:second 的字符串,它表示程序被編譯的時間。

讓我們看看上述這些宏的實(shí)例:

#include  using namespace std;

int main ()
{
    cout << "value of __line__ : " << __line__ << endl;
    cout << "value of __file__ : " << __file__ << endl;
    cout << "value of __date__ : " << __date__ << endl;
    cout << "value of __time__ : " << __time__ << endl;

    return 0;
}

當(dāng)上面的代碼被編譯和執(zhí)行時,它會產(chǎn)生下列結(jié)果:

value of __line__ : 6
value of __file__ : test.cpp
value of __date__ : feb 28 2011
value of __time__ : 18:52:48

下一節(jié):c++ 信號處理

c++ 簡介

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频