gpt4 book ai didi

c++ - 将重载运算符 << 与运算符 * 一起使用时出错

转载 作者:行者123 更新时间:2023-11-30 00:56:13 25 4
gpt4 key购买 nike

我最近尝试过运算符重载,并查看了这个关于运算符重载的 stackoverflow 页面 (http://stackoverflow.com/questions/4421706/operator-overloading)。

我重载了 * 运算符,可以运行如下代码

Vector2 a(2, 3);
Vector2 b(5, 8);
Vector2 c = a*b;

但得到编译时错误error: invalid operands to binary expression ('basic_ostream<char, std::char_traits<char> >' and 'Vector2')

运行如下代码时

std::cout << a*b;

这里是Vector2.cpp

#include "Vector2.h"

Vector2::Vector2(const float x, const float y) {
this->x = x;
this->y = y;
}

Vector2 &Vector2::operator*=(const Vector2 &rhs) {
this->x *= rhs.x;
this->y *= rhs.y;
return *this;
}

std::ostream &operator<< (std::ostream &out, Vector2 &vector) {
return out << "(" << vector.x << ", " << vector.y << ")";
}

这里是 Vector2.h

#include <iostream>

class Vector2 {
public:
float x;
float y;

Vector2(const float x, const float y);
Vector2 &operator*=(const Vector2 &rhs);
};

inline Vector2 operator*(Vector2 lhs, const Vector2 &rhs) {
lhs *= rhs;
return lhs;
}

std::ostream &operator<<(std::ostream &out, Vector2 &vector);

我不确定从这里到哪里去。

最佳答案

问题是

a*b

返回一个临时的,所以你需要:

std::ostream &operator<<(std::ostream &out, const Vector2 &vector);
// |
// notice const

因为临时不能绑定(bind)到非常量引用。

关于c++ - 将重载运算符 << 与运算符 * 一起使用时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10760462/

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