Error when overloading insertion (lt;lt;) and addition (+)(重载插入(lt;lt;)和加法(+)时出错)
本文介绍了重载插入(<;<;)和加法(+)时出错的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在学习C++,这让我感到困惑。我有一个重载了加号和插入操作符的Vector
类:
#include <iostream>
class Vector {
public:
Vector(float _x, float _y, float _z) {
x = _x; y = _y; z = _z;
}
float x, y, z;
};
Vector operator+(const Vector &v1, const Vector &v2) {
return Vector(v1.x + v2.x, v1.y + v2.y, v1.z + v2.z);
}
std::ostream &operator<<(std::ostream &out, Vector &v) {
out << "(" << v.x << ", " << v.y << ", " << v.z << ")";
return out;
}
int main() {
Vector i(1, 0, 0);
Vector j(0, 1, 0);
std::cout << i;
/* std::cout << (i + j); */
}
当我尝试打印Vector
时,一切正常:
Vector i(1, 0, 0);
std::cout << i; // => "(1, 0, 0)"
添加向量也很有效:
Vector i(1, 0, 0);
Vector j(0, 1, 0);
Vector x = i + j;
std::cout << x; // => "(1, 1, 0)"
但是,如果我尝试打印两个向量之和而没有中间变量,我会得到一个巨大的编译错误,我真的不明白:
Vector i(1, 0, 0);
Vector j(0, 1, 0);
std::cout << (i + j); // Compile Error
vector.cpp: In function ‘int main()’:
vector.cpp:28:15: error: no match for ‘operator<<’ (operand types are ‘std::ostream {aka std::basic_ostream<char>}’ and ‘Vector’)
std::cout << (i + j);
^
vector.cpp:17:15: note: candidate: std::ostream& operator<<(std::ostream&, Vector&) <near match>
std::ostream &operator<<(std::ostream &out, Vector &v) {
^
vector.cpp:17:15: note: conversion of argument 2 would be ill-formed:
vector.cpp:28:21: error: invalid initialization of non-const reference of type ‘Vector&’ from an rvalue of type ‘Vector’
std::cout << (i + j);
我做错了什么?这真的管用吗?
推荐答案
加法运算符的结果不能进行非const
引用。但是,由于您没有在<<
中修改Vector
,所以您可以且应该将其设置为const
:
std::ostream &operator<<(std::ostream &out, const Vector &v) {
out << "(" << v.x << ", " << v.y << ", " << v.z << ")";
return out;
}
这篇关于重载插入(<;<;)和加法(+)时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:重载插入(<;<;)和加法(+)时出错
基础教程推荐
猜你喜欢
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 运算符重载的基本规则和习语是什么? 2022-10-31
- C++,'if' 表达式中的变量声明 2021-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17