免费注册 手机版 网站地图 小工具

学而优·知识库

首 页
请问下述代码中: int operator+(…)起什么作用?this 是什么?ccc 的值最终为多少?class Fruit {
请问下述代码中: int operator+(…)起什么作用?this 是什么?ccc 的值最终为多少?
class Fruit
{
public:
Fruit()
{
weight = 2;
}
Fruit(int w)
{
weight = w;
}
int operator+(Fruit f)
{
return this->weight * f.weight;
}
private:
int weight;
};
Fruit aaa;
Fruit bbb(4);
int ccc = aaa + bbb;
参考答案

关闭

前往注册

我已注册,登录账号 继续查看答案