首页 > 问答 > 正文
头文件中,继承的基类,编译的时候总是报错:expected class-name before '{' token
女神的闺蜜爱上我2017-06-27 09:21:06
我感觉这跟继承没关系,单纯是你代码写错了
代言2017-06-27 09:21:06
应该是你的代码写错了,你可以把代码贴出来这样才能具体帮你分析
#ifndef MAN_H #define MAN_H #include "person.h" class Man :public person { public: Man(); void helpForOthers(); }; #endif//MAN_H int main() { return 0; }
这样应该就没问题了
高洛峰2017-06-27 09:21:06