c++ 编译报错汇总(随时更新)

1、invalid new-expression of abstract class type ‘×××ב

这个报错代表一个尝试在实例化一个抽象类,也就是说父类的接口中有纯虚函数在子类中没有实现;

举例:

//父类
class parent:
{
  virtual ~parent();
  virtual void func1() = 0;
};

//子类
class child: public parent
{
  child();
  ~child();
};

int main()
{
  parent *test = new child();
};

 

这样编译就会报错,子类中必须要实现所有父类里面定义的纯虚函数

正确方式如下:

class parent:
{
  virtual ~parent();
  virtual void func1() = 0;
};

class child: public parent
{
  child();
  ~child();
  void func1() {}
}

int main()
{
  parent *test = new child();
};

 2:error: cannot declare variable ‘bbb’ to be of abstract type ‘aaa’

note:   because the following virtual functions are pure within ‘aaa’:

一般是class aaa中有纯虚函数没有实现导致

转载于:https://www.cnblogs.com/Malphite/p/9903262.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值