标签: inheritance constructor
this is my code
and this are the error massages
它必须对默认构造函数执行某些操作。我只是不明白错误是什么。
答案 0 :(得分:0)
您正在声明Son的构造函数,但没有定义它。在main()中创建子对象时,它将调用son的构造函数,必须对其进行定义。添加一个空构造函数将解决这个问题。而不是
son();
写:
son() { }
您的错误消息将消失。