- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
代码:
typedef int a; // #1
extern int a; // #2, error
gcc 会产生错误“'a' redeclared as a different kind of symbol”,但是当我们将 extern
声明移动到 block 范围时,不会有警告,为什么?
typedef int a; // #3
void foo() {
extern int a; // #4, ok
}
和:
char a; // #5
void foo() {
extern int a; // #6, error
}
更新:
感谢@Yunnosch 的回复,但是还是不能回答我的问题。让我们看看#6,#5,当编译器看到#6 时,它会尝试在文件范围标识符中查找以查找是否存在相同的 'a',尽管它们在不同的范围内,但编译器会产生错误。
然后看#4,#3,当编译器看到#4时,它会发现相同的'a'以同样的方式存在,为什么它不产生错误?
@Yunnosch 和@Stargateur 都解释了一些关于不同范围的东西,这显然不是真的。我的观点是它与链接有关,但 #2 无法隐藏 #1 告诉我这也不是真的。
更新 2:
感谢@AnT,他给出了非常详细的解释。
最佳答案
typedef 名称和变量名称都是 C 中的普通标识符。它们共享相同的 namespace 。不能有两个同名声明,它们在同一作用域和同一 namespace 中声明不同的实体
6.2.1 Scopes of identifiers
2 [...] Different entities designated by the same identifier either have different scopes, or are in different name spaces.[...]
此外,正如 Stefan Ram 在 comp.lang.c 6.7/3 中所建议的那样,这里可能更加相关
6.7 Declarations
3 If an identifier has no linkage, there shall be no more than one declaration of the identifier (in a declarator or type specifier) with the same scope and in the same name space, except that:
— a typedef name may be redefined to denote the same type as it currently does, provided that type is not a variably modified type;
— tags may be redeclared as specified in 6.7.2.3.
无论哪种情况,关键点是您的两个声明都在相同的范围和相同的 namespace 中进行。这是您的第一个代码示例违反的要求。这就是编译器所提示的。
您的第二个和第三个代码示例在不同的范围 中声明了两个标识符a
。那里没有违反 6.2.1/2。这些示例可能会遇到其他问题,但这是完全不同的情况。
你的第二个例子可能是完全有效的,前提是你在不同的翻译单元(在不同的文件范围)中定义全局 a
,它的定义不会与 typedef 声明冲突。
您的第三个示例导致未定义的行为,因为 a
的外部定义指定了一个与本地 extern
声明不兼容的类型。
6.2.7 Compatible type and composite type
2 All declarations that refer to the same object or function shall have compatible type; otherwise, the behavior is undefined.
关于c - block 范围内的 extern 与文件范围内的 typedef 不冲突?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51805323/
这段代码是否正确? extern "C" extern int x; // 1 extern extern "C" int y; // 2 extern "C" extern
根据 C++ Primer ,我们可以为定义为 extern 的变量提供初始化程序,但这样做会覆盖 extern。具有初始值设定项的 extern 是一个定义: extern double pi =
使用 Cuda 5.0、VS2010 这个项目在 VS2012 中编译和链接很好,但是 VS2012 不支持 Nsight 调试所以我也在 VS2010 中开发。所以我有一个 VS2010 项目文件,
这个问题已经有答案了: How do I use extern to share variables between source files? (19 个回答) Different compilat
我正在编写供 C 程序使用的 C++ 共享库。但是,我对 extern 和 extern "C" 有疑问。 考虑以下代码 我的头文件是这样的: #ifdef __cplusplus
我对整个 header 使用 extern "C" 说明符,还是为每个函数指定 extern 有区别吗? 据我所知,没有,因为只有函数和变量可以外部链接,所以当我在每个函数原型(prototype)和
这个问题在这里已经有了答案: What is the effect of extern "C" in C++? (17 个答案) 关闭 7 年前。 我见过 C/C++ 代码使用在函数签名中声明的 e
所以我使用 svn:externals 来检查一个外部仓库。外部仓库有自己的 svn-externals 设置。 现在,当更新我的项目的工作副本时,来自外部存储库的文件正在更新,但它的外部文件没有。该
是否可以忽略 svn:externals 属性中引用的标记的外部依赖性?这听起来像是一个很奇怪的问题,但让我解释一下...... 我收集了大量独立的“可插入”代码模块,每个模块都可以作为独立项目进行独
我见过 2 种创建全局变量的方法,有什么区别,什么时候使用它们? //.h extern NSString * const MyConstant; //.m NSString * const MyCo
我在 test 模块下通过 stripe api 在 stripe 中创建了一个帐户。并与该账户绑定(bind)一个银行账户。转到 Stripe dashboard -> connect -> acc
我在下面有一个代码。它是由 qemu 程序(一个 C 程序)使用 dlopen 加载的动态共享库的一部分。 extern "C" { extern uint64_t host_virt_offset;
C++ Primer 第 5 版第 60 页讨论了如何跨文件共享 const 变量 //file_1.cc extern const int bufSize = fcn(); //file_1.h e
这个 Unresolved external 问题有什么问题?我正在尝试将其实现到我的 MFC 应用程序的 InitInstance 中。但是我从调试器中收到此行错误。 LNK2019: unreso
在 C++ 中,extern(后面不跟语言链接字符串文字)似乎对命名空间范围 (Difference between declaration of function with extern and w
假设我有 3 个文件:file1.c、file2.c 和 globals.h。 file1.c 和 file2.c 都包含 globals.h。 file1.c 包含 file2.c 需要使用的结构。
我正在为具有 16 位安装程序的旧 CD-ROM 游戏编写新的安装程序,安装程序需要在硬盘上并且能够从原始光盘复制文件。如果所有游戏文件都打包在安装程序中,我已经设置了一个可以安装游戏的脚本,这适合个
在编译我的代码时,我收到此错误。 1>MSVCRTD.lib(crtexe.obj):错误 LNK2019:函数 ___tmainCRTStartup 中引用了未解析的外部符号 _main1>C:\U
我试图将 cimg 库包装在 c++/clr 中,当我尝试构建它时,我遇到了一堆链接错误。 Error 20 error LNK2028: unresolved token (0A0002AC)
我一直遇到这两个错误,但我似乎找不到有效的解决方案。 LNK1120: 1 unresolved externals Error 1 error LNK2019: unresolved externa
我是一名优秀的程序员,十分优秀!