1 Star 0 Fork 1

llongger/Code_C++

forked from GodOuO/Code_C++ 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
27.this.cpp 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
GodOuO 提交于 2023-03-15 04:06 . Train
#include<iostream>
#include<string>
using namespace std;
class Person
{
private:
int age;
public:
int getAge(){
return age;
}
void PersonAddAge(Person &p); //Person &p传入
Person& PersonAddAge_Plus(Person &p); //Person &连续传入
Person(int age);
~Person();
};
Person::Person(int age)
{
this->age = age; //this指针指向 被调用函数 所属的对象
}
void Person::PersonAddAge(Person &p){
this->age += p.age; //将传入的P的age 加入自身age中
}
Person& Person::PersonAddAge_Plus(Person &p){
this->age += p.age;
return *this;
}
Person::~Person()
{
}
void test01(){
Person p1(18);
cout<<"P1's Age:\t"<<p1.getAge()<<endl;
}
void test02(){
Person p1(10);
Person p2(51);
p2.PersonAddAge(p1);
cout<<"P2's Age:\t"<<p2.getAge()<<endl;
}
void test03(){
Person p3(51);
Person p4(100);
p3.PersonAddAge_Plus(p4).PersonAddAge_Plus(p4).PersonAddAge_Plus(p4);
cout<<"P3's Age_Plus:\t"<<p3.getAge()<<endl;
}
int main(){
//test01();
test02();
test03();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/llongger/codeCpp.git
[email protected]:llongger/codeCpp.git
llongger
codeCpp
Code_C++
master

搜索帮助