豆瓣
扫码直接下载
http://staff.ustc.edu.cn/~czou/
在类中声明了个void 函数
Class Student()
{
public:
void set();
}
在写类函数的
Student::set()
这样写是不对的‘
要
void Student::set()
{}’