c++编写在派生类Student中加入Identify身份证类的子对象,并修改Student类的构造函数完成对其的初始化。

2025-01-06 07:19:29
推荐回答(1个)
回答1:

class Student
{
private:
Identify identify;
public:
Student(Identify id):identify(id) {}
};