题解 | 构造函数的初始化
构造函数
https://www.nowcoder.com/practice/2809d720c7024f959b283f8444d9bdc9
#include <iostream>
#include <string>
using namespace std;
// Person类
class Person {
public:
string name; // 姓名
int age; // 年龄
// write your code here......
Person(string name, int age){
this-> name = name;
this-> age = age;
}
void showPerson() {
cout << name << " " << age << endl;
}
};
int main() {
string name;
int age;
cin >> name;
cin >> age;
Person p(name, age);
p.showPerson();
return 0;
}
C/C++题解 文章被收录于专栏
记录个人编程题的解题思路以及学习的新知识
