题解 | #构造函数#
构造函数
http://www.nowcoder.com/practice/2809d720c7024f959b283f8444d9bdc9
#include <string>
using namespace std;
// Person类
class Person {
public:
string name; // 姓名
int age; // 年龄
Person(string name,int age){
this->name=name;
this->age=age;
}
// write your code here......
void showPerson() {
cout << name << " " << age << endl;
}
};
int main() {
string name;
int age;
cin >> name;
cin >> age;
Person p(name, age);
p.showPerson();
return 0;
}