请问下述代码中: 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; 参考答案 查看答案