gpt4 book ai didi

c++ - C++中的运算符重载

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:19:15 25 4
gpt4 key购买 nike

我最近发现了 C++ 中的重载运算符。当你想在类中重载一个运算符,并且我们想用它创建新对象时,我们可以用我们定义的其他对象来创建新对象

NameOfClass operator+(const NameOfClass& b){
{
NameOfClass tmp;
tmp.length = this->length + b.length;
tmp.breadth = this->breadth + b.breadth;
tmp.height = this->height + b.height;
return tmp;

}

我不知道我是否在此之前定义了 2 个对象。例如

NameOfClass one(length,breadth,height);
NameOfClass two(length,breadth,height);

我设置它们的属性。但是如何

NameOfClass three=one+two;

设置“三”的属性? 1 和 2 都被视为“+”重载运算符的参数。函数里说的很清楚

tmp.length = this->length + b.length;

但是 this->length 应该是未定义的并且 b.length 是私有(private)的。它是如何混合在一起的?或者它是否被视为方法,所以 one+two = + is method of one and two is being passed as argument,这意味着 this->length 指的是“一个”对象的长度?使用 tutorialspoint 中的示例。

#include <iostream>
using namespace std;

class Box
{
public:

double getVolume(void)
{
return length * breadth * height;
}
void setLength( double len )
{
length = len;
}

void setBreadth( double bre )
{
breadth = bre;
}

void setHeight( double hei )
{
height = hei;
}
// Overload + operator to add two Box objects.
Box operator+(const Box& b)
{
Box box;
box.length = this->length + b.length;
box.breadth = this->breadth + b.breadth;
box.height = this->height + b.height;
return box;
}
private:
double length; // Length of a box
double breadth; // Breadth of a box
double height; // Height of a box
};
// Main function for the program
int main( )
{
Box Box1; // Declare Box1 of type Box
Box Box2; // Declare Box2 of type Box
Box Box3; // Declare Box3 of type Box
double volume = 0.0; // Store the volume of a box here

// box 1 specification
Box1.setLength(6.0);
Box1.setBreadth(7.0);
Box1.setHeight(5.0);

// box 2 specification
Box2.setLength(12.0);
Box2.setBreadth(13.0);
Box2.setHeight(10.0);

// volume of box 1
volume = Box1.getVolume();
cout << "Volume of Box1 : " << volume <<endl;

// volume of box 2
volume = Box2.getVolume();
cout << "Volume of Box2 : " << volume <<endl;

// Add two object as follows:
Box3 = Box1 + Box2;

// volume of box 3
volume = Box3.getVolume();
cout << "Volume of Box3 : " << volume <<endl;

return 0;
}

最佳答案

1.

how does

NameOfClass three=one+two;

set the attributes of "three"?

NameOfClass three=one+two; 将被解释为 NameOfClass three = one.operator+(two);,而 three 将被解释为从 NameOfClass::operator=() 的返回值构造复制/移动。

2.

tmp.length = this->length + b.length;

but this-> length should be undefined and b.length is private. How does it mix it together?

“this-> length should be undefined”是什么意思?这里 this == &oneb == two

b.lengthprivate 没关系,因为 operator+ 是成员函数,它可以访问私有(private)成员。

关于c++ - C++中的运算符重载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35768449/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com