gpt4 book ai didi

c - 当非静态函数声明跟在静态函数声明之后会发生什么?

转载 作者:太空狗 更新时间:2023-10-29 16:31:04 25 4
gpt4 key购买 nike

以下编译:

static int foo() { return 1; }
int foo();

但是,它会一直编译吗?这种情况下的行为是否定义明确?当非静态原型(prototype)遵循静态声明时,这意味着什么?

最佳答案

是的,它会编译并且行为定义明确。由于 foo 早于 int foo();1 被声明为 staticfoo 有内部链接。

C11:6.2.2 标识符的链接(p4):

For an identifier declared with the storage-class specifier extern in a scope in which a prior declaration of that identifier is visible,31) if the prior declaration specifies internal or external linkage, the linkage of the identifier at the later declaration is the same as the linkage specified at the prior declaration. [...]

脚注指出:

31) As specified in 6.2.1, the later declaration might hide the prior declaration.


<子>1。如果未指定存储类,则假定该函数具有外部链接。标准说:如果一个函数的标识符声明没有存储类说明符,它的链接就像用存储类说明符 extern -- 6.2.2 (p5) 声明的一样确定。

关于c - 当非静态函数声明跟在静态函数声明之后会发生什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28264874/

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