gpt4 book ai didi

c++ - 对浮点值使用 += 运算符

转载 作者:搜寻专家 更新时间:2023-10-31 01:38:58 24 4
gpt4 key购买 nike

我正在尝试实现一个运算符函数来解决下一个错误:

error: assignment of member 'Animal::weight' in read-only object weight +=amount*(0.02f);

我的 Animal.cpp 函数如下所示:

void Animal::feed(float amount) const
{
if (type == "sheep"){
amount=amount*(0.02f);
weight+=amount;
}else if (type == "cow"){
weight +=amount*(0.05f);
}else if (type == "pig"){
weight +=amount*(0.1f);
}
return weight;
}

Animal.h(简短版):

    class Animal
{
public:
Animal(std::string aType, const char *anSex, float aWeight, QDateTime birthday);
float getWeight() const {return weight;};

void setWeight(float value) {weight = value;};
float feed(float amount) const;
void feedAnimal(float amount);
private:
float weight;
};

float operator+=(const float &weight,const float &amount);

然后我实现了一个 += 运算符。

float operator+=(const float &weight,const float &amount);

这也包含在 .cpp 文件中:

 Animal & operator +=(Animal &animal, float amount){
float w = animal.getWeight();
animal.setWeight(w+amount);
}

我使用了一个引用,以便更新每只动物的重量。所以我可以调用函数 feed,当我想知道结果时,我可以使用 get 函数:

float getWeight() const {return weight;};

但出于某种原因,我发现了下一个错误:

 'float operator+=(const float&, const float&)' must have an argument of class or enumerated type
float operator+=(const float &weight,const float &amount);

有什么解决办法吗?

对于使用提要功能我也有问题。我有我的 Farm.cpp 类,我在其中循环查找农场中的所有动物。

void Farm::feedAllAnimals(float amount)
{
for (auto an : animals) {
if(an != nullptr) {
an->feed(amount);
}
}
std::cout << "all animals fed with " << amount << "kg of fodder";
}

在我的 .h 文件中我有这些函数:

Public:
void feedAllAnimals(float amount);

Private:
std::vector<std::shared_ptr<const Animal>> animals;

我的错误:

error: passing 'const Animal' as 'this' argument of 'float Animal::feed(float)' discards qualifiers [-fpermissive] an->feed(amount);
^

最佳答案

您将函数 feed 声明为 const 成员函数

void feed(float amount) const;
^^^^^

如果它是常量对象,则不能更改该对象。

至于运营商

float operator+=(const float &weight,const float &amount);

那么您不能重载基本类型的运算符。我认为您的意思是以下内容之一

Animal & operator +=( Animal &animal, float amount);

例如

Animal & operator +=( Animal &animal, float amount)
{
animal.setWeight( animal.getWeight() + amount );

return animal;
}

或在类中声明为成员函数的运算符,例如

Animal & operator +=( float amount );

对于 vector,如果要更改 evctor 元素指向的对象,则模板参数必须没有限定符 const

std::vector<std::shared_ptr<Animal>> animals;

关于c++ - 对浮点值使用 += 运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32036494/

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