一個可以與作業系統互動的程序,不論其運行在哪個作業系統上。
大多數c/c 編譯器都具有定義巨集來偵測作業系統的能力。
一些GCC編譯器的巨集包含:
_WIN32:32位元和64位元Windows作業系統的巨集。
_WIN64:64位元Windows作業系統的巨集。
_UNIX:UNIX作業系統的巨集。
_APPLE_:macOS的巨集。
基於這些定義的宏,讓我們建立一個不受作業系統限制的程式:
即時示範
#include <iostream> using namespace std; int main() { #ifdef _WIN32 system("dir"); #else system("ls"); #endif return 0; }
This lists all files of the directory to the output screen irrespective of OS.
以上是在C/C++中編寫與作業系統無關的程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!