#2
guanren2023-07-22 01:48
|
程序代码:
#include <iostream>
using namespace std;
#include <string>
class person
{
public:
person(string m_name, int m_age)
{
this->name = m_name;
this->age = m_age;
};
bool operator==(person& p)
{
if (this->name == p.name && this->age == p.age)
{
return true;
}
else {
return false;
}
}
string name;
int age;
};
void test01()
{
person p1("tom", 18);
person p2("alice", 18);
p1 = person("tom", 19);
if (p1 == p2)
{
cout << "相等" << endl;
}
else {
cout << "不相等" << endl;
}
}
int main()
{
test01();
}
using namespace std;
#include <string>
class person
{
public:
person(string m_name, int m_age)
{
this->name = m_name;
this->age = m_age;
};
bool operator==(person& p)
{
if (this->name == p.name && this->age == p.age)
{
return true;
}
else {
return false;
}
}
string name;
int age;
};
void test01()
{
person p1("tom", 18);
person p2("alice", 18);
p1 = person("tom", 19);
if (p1 == p2)
{
cout << "相等" << endl;
}
else {
cout << "不相等" << endl;
}
}
int main()
{
test01();
}
我写了一个为person名字的自定义类 然后今天看教程看到了构造函数
照猫画虎 写了一个 person p1 ("tom",19) 这样 等于是构造这个p1的时候 就给name和age赋值了
我想构造之后 再去修改name和age的话 有没有办法可以重载函数 直接p1("alice",20) 这样 如果可以的话 该如何写?
而不是在类当中声明一个函数 比如setName 或者setAge 然后p1.setAge(19) p1.setName("alice")
因为今天刚学到重载 感觉挺好玩的 所以想有没有办法可以重载这部分?
[此贴子已经被作者于2023-7-22 01:12编辑过]