这样的代码,实际上这提供了一种抽象机制,使代码可以在不同平台间移植。
#ifdef _WIN32 #ifdef _WIN64 {windows 64位代码} #else {windows 32位代码} #endif #else {其它平台代码} #endif