class test
{
public:
test R() const
{
test r;
r.max = 10;
return r;
}
test& R()
{
max = 20;
return *this;
}
void prin()
{
cout << max << endl;
}
private:
int max;
};
a.prin();//此时会打印出 20
test a;
const test b;
a = b.R();
a.prin();//此时会打印出 10;
总结:
只有返回值不同的函数重载 实例化时定义类型