当前位置: 代码迷 >> Ruby/Rails >> error: conflicting type qualifiers for 'xxxxx'
  详细解决方案

error: conflicting type qualifiers for 'xxxxx'

热度:414   发布时间:2016-04-29 02:25:51.0
error: conflicting type qualifiers for 'xxxxx'

网上的很多解释……很难理解……

情景描述:

在代码中,写了A\B两个文件,A:是.c文件,B是.h文件和.c文件。

在A中包含了B.h文件。

在B.h文件中声明了A中定义的变量。

这样编译的情况下就会出现error: conflicting type qualifiers for 'XXXX"的编译错误。

解决办法:

将在B.h中声明的外部变量移到B.c中。

这样两者之间就不存在一种相互引用的高度耦合状态。

  相关解决方案