#ifdef _WIN32
#ifdef _WIN64
這樣的代碼,實際上這提供了一種抽象機制,使代碼可以在不同平台間移植。
#ifdef _WIN32
#ifdef _WIN64 {windows 64位代碼} #else {windows 32位代碼} #endif #else {其它平台代碼} #endif
這樣的代碼,實際上這提供了一種抽象機制,使代碼可以在不同平台間移植。
#ifdef _WIN32
#ifdef _WIN64 {windows 64位代碼} #else {windows 32位代碼} #endif #else {其它平台代碼} #endif
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。