gpt4 book ai didi

c++ - 为什么extern可以应用于定义?

转载 作者:可可西里 更新时间:2023-11-01 16:37:49 25 4
gpt4 key购买 nike

为什么这是合法的?

extern int foo = 0xF00; // Gets a warning, still compiles

extern void bar() { // No warning
int x;
}

是否有理由允许这样做?

最佳答案

有时候有用

extern const int foo = 0xF00;

如果没有 extern,在 C++ 中 foo 将是 static 并且具有内部链接(这意味着您不能使用 foo 来自另一个翻译单元)。

在您的示例中,两种情况下的 extern 都是多余的。 In C99 an extern can make a difference for inline functions. .

关于c++ - 为什么extern可以应用于定义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7866692/

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