拷贝构造函数
如下定义拷贝构造函数:
student::student(const student &tea)
{
cout << "student(const student &tea)" << endl;
}
会一直存在:
严重性 代码 说明 项目 文件 行 禁止显示状态
错误 C2789 “student::m_iMax”: 必须初始化常量限定类型的对象 ConsoleApplication3 c:\users\dell\source\repos\consoleapplication3\consoleapplication3\student.cpp 33
的问题!