拷贝构造函数的问题
class Student{public:
Student(char*pName="no name",int ssid=0}
{.............}
Student(Student & s)
{.............}
~Student()
{..........}
protected:
char name[40];
int id;
};
以上是一个构造函数
但是我不明白其中红色的语句是什么意思,请各位指教。
我正学到拷贝构造函数,不明白拷贝构造函数到底有什么含义,谢谢各位。