通过预处理器指令检查变量的类型

发布于 2024-12-03 13:57:16 字数 329 浏览 1 评论 0原文

有没有办法通过预处理器检查变量的类型?
实际上我想做这样的事情:

//test.c
int main(void)
{
    TYPE a=6;
#if TYPE==int
    printf("%d\n",a);
#elif TYPE==float
    printf("%f\n",a);
#endif
}

现在我将它用作:

gcc -o test -D TYPE=float test.c

但它不起作用。 TYPE 始终与 int 匹配并根据 %d 给出结果。
请帮我解决这个问题。

Is there a way to check the type of variable by preprocessor ?
Actually I want to do something like this :

//test.c
int main(void)
{
    TYPE a=6;
#if TYPE==int
    printf("%d\n",a);
#elif TYPE==float
    printf("%f\n",a);
#endif
}

Now I use it as :

gcc -o test -D TYPE=float test.c

But it is not working. TYPE is always matching with int and giving result according to %d.
Please help me to solve this problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苹果你个爱泡泡 2024-12-10 13:57:16

结合使用以下链接中的技术:

https://github.com/pfultz2/Cloak/wiki/C-Preprocessor-tricks,-tips,-and-idioms
http://jhnet.co.uk/articles/cpp_magic

#define CAT(a, ...) a ## __VA_ARGS__
#define SECOND(a, b, ...) b
#define IS_PROBE(...) SECOND(__VA_ARGS__, 0)
#define PROBE() ~, 1
#define NOT(x) IS_PROBE(CAT(_NOT_, x))
#define _NOT_0 PROBE()
#define BOOL(x) NOT(NOT(x))
#define IF(c) _IF(BOOL(c))
#define _IF(c) CAT(_IF_,c)
#define _IF_0(...)
#define _IF_1(...) __VA_ARGS__
#define IS_PAREN(x) IS_PROBE(IS_PAREN_PROBE x)
#define IS_PAREN_PROBE(...) PROBE()

#define IS_INT(t)           IS_PAREN( CAT(_IS_INT_,t) (()) )
#define _IS_INT_int(x)      x
#define IS_FLOAT(t)         IS_PAREN( CAT(_IS_FLOAT_,t) (()) )
#define _IS_FLOAT_float(x)  x


#define TYPE    float
int main(void)
{
    TYPE a=6;

    IF(IS_INT(TYPE))(
        printf("%d\n",a);
        )
    IF(IS_FLOAT(TYPE))(
        printf("%f\n",a);
        )
}

您甚至可以在https://godbolt.org/ 带有 -E 编译器选项。

Using a combination of techniques from the following links:

https://github.com/pfultz2/Cloak/wiki/C-Preprocessor-tricks,-tips,-and-idioms
http://jhnet.co.uk/articles/cpp_magic

#define CAT(a, ...) a ## __VA_ARGS__
#define SECOND(a, b, ...) b
#define IS_PROBE(...) SECOND(__VA_ARGS__, 0)
#define PROBE() ~, 1
#define NOT(x) IS_PROBE(CAT(_NOT_, x))
#define _NOT_0 PROBE()
#define BOOL(x) NOT(NOT(x))
#define IF(c) _IF(BOOL(c))
#define _IF(c) CAT(_IF_,c)
#define _IF_0(...)
#define _IF_1(...) __VA_ARGS__
#define IS_PAREN(x) IS_PROBE(IS_PAREN_PROBE x)
#define IS_PAREN_PROBE(...) PROBE()

#define IS_INT(t)           IS_PAREN( CAT(_IS_INT_,t) (()) )
#define _IS_INT_int(x)      x
#define IS_FLOAT(t)         IS_PAREN( CAT(_IS_FLOAT_,t) (()) )
#define _IS_FLOAT_float(x)  x


#define TYPE    float
int main(void)
{
    TYPE a=6;

    IF(IS_INT(TYPE))(
        printf("%d\n",a);
        )
    IF(IS_FLOAT(TYPE))(
        printf("%f\n",a);
        )
}

You can even test it out at https://godbolt.org/ with the -E compiler option.

没有你我更好 2024-12-10 13:57:16

预处理器无法比较这样的字符串。请参阅此常见问题解答。执行此操作的方法是通过 #defining 选项,并且有一个示例可以帮助您。

The preprocessor can't compare strings like that. See this FAQ. The way to do it is by #defining the options, and there is an example there to help you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文