c – 更改名称的链接

前端之家收集整理的这篇文章主要介绍了c – 更改名称的链接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在此代码中尝试更改名称i的链接.在C/C++中合法吗?
static int i = 2;
int i;

int main()
{
   return 0;
}

解决方法

在C中,您的代码格式不正确(您有多个变量i的定义),即需要一个符合标准的编译器才能发出错误消息

$3.2.1(C 03)

No translation unit shall contain more than one definition of any variable,function,class type,enumeration type or template.

在C99中,您的代码调用未定义的行为,因为6.2.2 / 7说

If,within a translation unit,the same identifier appears with both internal and external linkage,the behavior is undefined.

原文链接:https://www.f2er.com/c/120091.html

猜你在找的C&C++相关文章