C 语言

关注公众号 jb51net

关闭
首页 > 软件编程 > C 语言 > C++报错field `XX’ has incomplete type

C++报错 XX does not name a type;field `XX’ has incomplete type的解决方案

作者:coder i++

这篇文章主要给大家介绍了C++报错 XX does not name a type;field `XX’ has incomplete type解决方案,文中通过代码示例讲解的非常详细,需要的朋友可以参考下

C++报错 XX does not name a type;field `XX’ has incomplete type解决方案

两个C++编译错误及解决办法–does not name a type和field `XX’ has incomplete type

编译错误一:XX does not name a type

编译错误二:field `XX’ has incomplete type

编译错误一:XX does not name a type

拿个例子来讲,如果两个类定义如下:

class B{
public:
B(){}
~B(){}
private:
A a;
};
class A{
public:
A(){}
~A(){}
private:
int a;
};

编译成则将报一个error:“A does not name a type”

即使clase A和class B分别在两个文件定义,并且在定义B的文件头中#include了class A的头文件也同样会报这个错(这是因为编译和链接之间的先后关系造成的)。

解决该错误的办法:

在class B定义声明之前先声明一下class A, 如下:

class A;
class B{
public:
B(){}
~B(){}
private:
A a;
};
class A{
public:
A(){}
~A(){}
private:
int a;
};

编译错误二:field `XX’ has incomplete type

同样紧跟上面的例子,通过问题一的办法,第一个错误已经消失,但是马上第二个错误就出现了!还是同一个位置。

这个错误的意思,就是说class B中的XX域的类型不够完整,为什么呢?明明class A后面已经定义好了啊。其实原因还是和前面一样,在class B定义之前,我们也只是对class A进行了声明而并没有进行具体的定义,所以解决该错误的方法是:

将class B定义中的A域改用指针就行了。改正后代码为:

class A;
class B{
public:
B(){}
~B(){}
private:
A *a;
};
class A{
public:
A(){}
~A(){}
private:
int a;
};

这样,这段简单的代码才能没有错误的通过编译。

到此这篇关于C++报错 XX does not name a type;field `XX’ has incomplete type解决方案的文章就介绍到这了,更多相关C++报错field `XX’ has incomplete type内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文