5

是否有预处理器指令检查是否未定义常量。我知道该#ifndef指令,但我也在寻找#elif not defined指令。#elif not defined存在吗?

这就是我将如何使用它:

#define REGISTER_CUSTOM_CALLBACK_FUNCTION(callbackFunctName) \
    #ifndef CUSTOM_CALLBACK_1 \
        #define CUSTOM_CALLBACK_1 \
        FORWARD_DECLARE_CALLBACK_FUNCTION(callbackFunctName) \
    #elif not defined CUSTOM_CALLBACK_2 \
        #define CUSTOM_CALLBACK_2  \
        FORWARD_DECLARE_CALLBACK_FUNCTION(callbackFunctName) \
    #elif not not defined CUSTOM_CALLBACK_3 \
        #define CUSTOM_CALLBACK_3  \
        FORWARD_DECLARE_CALLBACK_FUNCTION(callbackFunctName) \
    #endif
4

1 回答 1

15

怎么样

#elif !defined(...)

但是你有更大的问题 - 尾随\排除其他指令 - 或者更确切地说使它们非法。因此,即使使用有效的语法,您的定义也不会满足您的要求。

您需要在条件内移动初始定义。

#ifndef CUSTOM_CALLBACK_1
    #define CUSTOM_CALLBACK_1 
    #define REGISTER_CUSTOM_CALLBACK_FUNCTION(callbackFunctName) \
    FORWARD_DECLARE_CALLBACK_FUNCTION(callbackFunctName) 
#elif !defined(CUSTOM_CALLBACK_2)
    //.....
于 2013-02-11T08:30:25.430 回答