VC检测环境的宏
#ifndef _DEBUG//檢測編譯模式
int a = 1;
#else
int a = 2;
#endif
#ifndef _UNICODE//檢測編碼環境
int b = 3;
#else
int b = 4;
#endif
#ifndef _AFX//檢測運行環境(是否MFC)
int c = 5;
#else
int c = 6;
int a = 1;
#else
int a = 2;
#endif
#ifndef _UNICODE//檢測編碼環境
int b = 3;
#else
int b = 4;
#endif
#ifndef _AFX//檢測運行環境(是否MFC)
int c = 5;
#else
int c = 6;
#endif
==========================================
(1)平臺識別宏
WIN32:指明是Window 32位系統平臺。
常見的平臺識別宏如下:
_DOS_:MS-DOS 16位系統平臺。
WIN64:指明是Window 64位系統平臺。
_WIN32_WCE:Window Mobile 32位系統平臺。
_UNIX:UNIX系統平臺。
_POSIX_:POSIX(Portable Operating System Interface of Unix)系統平臺。
_LINUX_:LINUX系統平臺。
_APPLE_/_MAC_:蘋果(Macintosh)系統平臺。
(2)字符集識別宏
_MBCS/_UNICODE:指明該工程使用的字符集(多字節字符集/UNICODE)。
(3)UI識別宏
_CONSOLE/_WINDOWS:指明應用程序的類型是控制臺程序或窗口程序(CUI/GUI)。
(4)debug/release版本識別宏
_DEBUG/NDEBUG:指明編譯版本(Debug/Release)。
總結
- 上一篇: 非常精确的测试运行时间(比clock()
- 下一篇: VC中操作INI文件的API