您好,登錄后才能下訂單哦!
C/C++語言宏定義使用實(shí)例詳解
1. #ifndef 防止頭文件重定義
在一個(gè)大的軟件工程里面,可能會(huì)有多個(gè)文件同時(shí)包含一個(gè)頭文件,當(dāng)這些文件編譯鏈接成
一個(gè)可執(zhí)行文件時(shí),就會(huì)出現(xiàn)大量“重定義”的錯(cuò)誤。在頭文件中實(shí)用#ifndef #define #endif能避免頭文件的重定義。
方法:例如要編寫頭文件test.h
在頭文件開頭寫上兩行:
#ifndef TEST_H #define TEST_H //一般是文件名的大寫
頭文件結(jié)尾寫上一行:
#endif
這樣一個(gè)工程文件里同時(shí)包含兩個(gè)test.h時(shí),就不會(huì)出現(xiàn)重定義的錯(cuò)誤了。
注:Visual C++中有一種簡(jiǎn)化的方法,那就是使用 #pragma once
2. 編寫跨平臺(tái)的C/C++程序
2.1 操作系統(tǒng)相關(guān)宏定義
Windows: WIN32 Linux: linux Solaris: __sun
2.2 編譯器相關(guān)宏定義
VC: _MSC_VER GCC/G++: __GNUC__ SunCC: __SUNPRO_C 和 __SUNPRO_CC
3. 完整的代碼實(shí)例
//Avoid redefine anything in this header #ifndef UUID_H #define UUID_H // Check platform is Windows or Linux #ifdef _MSC_VER #ifndef DLL_API #define DLL_API __declspec(dllexport) #endif #else #ifndef DLL_API #define DLL_API #endif #endif #include <string> #include <random> #include <time.h> #include <stdlib.h> using namespace std; class DLL_API UUID { public: static string getUuidString(); }; #endif
感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。