gpt4 book ai didi

clang 中的 C 可变参数宏 __VA_ARGS__ 与 ##__VA_ARGS__

转载 作者:行者123 更新时间:2023-11-30 15:36:59 32 4
gpt4 key购买 nike

我有以下两个宏:

#define F1(...) [NSString stringWithFormat:__VA_ARGS__]
#define F2(format, ...) [NSString stringWithFormat:(format), ##__VA_ARGS__]

当我嵌套它们时,F1 可以工作,但 F2 无法编译。

这段代码:

    F1(@"%@", F1(@"%@", @"a"));
F2(@"%@", F2(@"%@", @"a"));

导致以下 clang 错误:

foo.m:51:15: warning: implicit declaration of function 'F2' is invalid in C99 [-Wimplicit-function-declaration]
F2(@"%@", F2(@"%@", @"a"));
^
foo.m:18:64: note: expanded from macro 'F2'
#define F2(format, ...) [NSString stringWithFormat:(format), ##__VA_ARGS__]
^
foo.m:51:15: warning: format specifies type 'id' but the argument has type 'int' [-Wformat]
F2(@"%@", F2(@"%@", @"a"));
~~ ^~~~~~~~~~~~~~~
%d
foo.m:18:64: note: expanded from macro 'F2'
#define F2(format, ...) [NSString stringWithFormat:(format), ##__VA_ARGS__]

请注意,F1 没有警告或错误,只有 F2 有问题。

这里发生了什么:这是预期的行为还是 clang 中的错误?

更重要的是,有没有办法让我调整 F2 以使其正常工作。我真的更喜欢 F2 的语法。

<小时/>

更新

按照@KenThomases的建议,我运行了clang -E -o foo.i foo.m

# 1 "foo.m"
# 1 "<built-in>" 1
# 1 "<built-in>" 3
# 178 "<built-in>" 3
# 1 "<command line>" 1
# 1 "<built-in>" 2
# 1 "foo.m" 2



NSLog([NSString stringWithFormat:@"%@", [NSString stringWithFormat:@"%@", @"a"]]);
NSLog([NSString stringWithFormat:(@"%@"), F2(@"%@", @"a")]);

我将此作为缺陷提交给 llvm.org:Bug 19141

最佳答案

在我看来,预处理器没有扩展 F2 宏的内部使用。显然,##__VA_ARGS__的使用只是逐字插入外部使用F2的参数,并没有进行进一步的扩展。

您可以让编译器预处理代码,它会告诉您发生了什么。 cc -E -o foo.i foo.c

关于clang 中的 C 可变参数宏 __VA_ARGS__ 与 ##__VA_ARGS__,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22383332/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com