标签:ted 成员 pre 构造 blog div str nbsp not
今天编写类的程序的时候不小心把类后的分号忘写了,就出现上面的错误提示。
顺便复习下类的正确格式:
class 类名 { public: //习惯上将公有类型放在前面,便于阅读 ……(外部接口) protected: …… (保护型成员) private: ……(私有成员) }; //这里的分号千万不能忘写,不然会出现错误error: 2533:constructors not allowed a return type
【c++错误】类的语法错误 error c2533:constructors not allowed a return type(构造函数不允许返回一个类型)
标签:ted 成员 pre 构造 blog div str nbsp not
原文地址:http://www.cnblogs.com/libra-yong/p/6413347.html