当前位置:   article > 正文

c++编译报错:invalid use of incomplete type struct (或class)_c++ invalid use of incomplete

c++ invalid use of incomplete

c++编译报错

c++编译报错:invalid use of incomplete type struct (或class)

原因:

编译器不知道所用的struct 或者是class的具体实现

如: class A, class B:
B.cpp 用到了A类的对象或者某个具体成员,没有包含A类的头文件。
  • 1
  • 2
  • 3
  • 4

解决方法:

在B的hpp或者.cpp文件中引入A的头文件
#include A.hpp
  • 1
  • 2

编译错误:“outside of class is not definition "

原因:

有一种可能的情况:
You have semicolons (; ) at the end of all your function definitions making the compiler think they're declarations.
即在方法定义的后面都误添加上了";",导致编译器认为这仅仅是个声明。
  • 1
  • 2
  • 3

解决方法:

去掉方法后面的分号";"
  • 1

编译错误:“invalid new-expression of abstract class type”

原因:

出现这个错误原因是new 了一个抽象类出错,说明父类(接口)中有纯虚函数没有实现。接口里的纯虚函数全部需要实现,这样才能new 子类。

例如:纯虚函数例如  void fun() = 0; 是纯虚函数,不是纯虚函数不作要求。
  • 1
  • 2
  • 3

解决方法:

实现所有纯虚函数, void fun()  {  }  空函数体也是实现。
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/121181
推荐阅读
相关标签
  

闽ICP备14008679号