我想在Linux和Windows上运行一些c++代码。有一些代码片段,我想只包括一种操作系统,而不是另一种。是否有一个标准的#ifdef可以使用一次?

喜欢的东西:

  #ifdef LINUX_KEY_WORD
    ... // linux code goes here.
  #elif WINDOWS_KEY_WORD
    ... // windows code goes here.
  #else 
  #error "OS not supported!"
  #endif

这个问题确实是一个重复的问题,但这里的答案要好得多,尤其是被接受的答案。


当前回答

use:

#ifdef __linux__ 
    //linux code goes here
#elif _WIN32
    // windows code goes here
#else

#endif

其他回答

这取决于编译器。如果你在Linux上用g++编译,在Windows上用vc++编译,这将会做:

#ifdef linux
    ...
#elif _WIN32
    ...
#else
    ...
#endif

这取决于所使用的编译器。

例如,Windows的定义可以是WIN32或_WIN32。

Linux的定义可以是UNIX或__linux__或Linux或__linux__。

我知道这不是答案,但如果有人在Qt中看起来一样

在Qt

https://wiki.qt.io/Get-OS-name-in-Qt

QString Get::osName()
{
#if defined(Q_OS_ANDROID)
    return QLatin1String("android");
#elif defined(Q_OS_BLACKBERRY)
    return QLatin1String("blackberry");
#elif defined(Q_OS_IOS)
    return QLatin1String("ios");
#elif defined(Q_OS_MAC)
    return QLatin1String("osx");
#elif defined(Q_OS_WINCE)
    return QLatin1String("wince");
#elif defined(Q_OS_WIN)
    return QLatin1String("windows");
#elif defined(Q_OS_LINUX)
    return QLatin1String("linux");
#elif defined(Q_OS_UNIX)
    return QLatin1String("unix");
#else
    return QLatin1String("unknown");
#endif
}

use:

#ifdef __linux__ 
    //linux code goes here
#elif _WIN32
    // windows code goes here
#else

#endif

这个回应不是关于宏观战争,而是如果没有找到匹配的平台,就会产生错误。

#ifdef LINUX_KEY_WORD   
... // linux code goes here.  
#elif WINDOWS_KEY_WORD    
... // windows code goes here.  
#else     
#error Platform not supported
#endif

如果不支持#error,可以使用static_assert (c++ 0x)关键字。或者您可以实现自定义STATIC_ASSERT,或者只是声明一个大小为0的数组,或者使用具有重复大小写的switch。简而言之,在编译时而不是在运行时产生错误