看看这个语法:
Matrix<int , 3 , 3 > m;
m << 1, 2, 3,
4, 5, 6,
7, 8, 9;
std::cout << m;
输出:
1 2 3
4 5 6
7 8 9
我怎样才能先重载&lt;&lt;像这样的运营商?
答案 0 :(得分:2)
以下内容可以帮助您:https://ideone.com/Ap6WWt
template <typename T, int W, int H>
class MatrixStream
{
public:
MatrixStream(Matrix<T, W, H>& mat, const T& value) : mat(mat), index(0)
{
*this, value;
}
MatrixStream& operator , (const T& value);
private:
Matrix<T, W, H>& mat;
int index;
};
template <typename T, int W, int H>
class Matrix
{
public:
MatrixStream<T, W, H> operator << (const T& value) {
return MatrixStream<T, W, H>(*this, value);
}
T m[W][H];
};
template <typename T, int W, int H>
MatrixStream<T, W, H>& MatrixStream<T, W, H>::operator , (const T& value)
{
assert(index < W * H);
int w = index / H;
int h = index % H;
mat.m[w][h] = value;
++index;
return *this;
}
但非常不鼓励重载operator ,
。
如评论中所述,您可以使用替代m << {1, 2, 3, 4, 5, 6, 7, 8, 9}
或m << 1 << 2 << 3 << 4 << 5 << 6 << 7 << 8 << 9
。 (第一个是更清洁的恕我直言)。
答案 1 :(得分:1)
使用如下表达式时:
CleanInitArray a(6);
a = 1,2,3,4,5,6;
编译器会读取它:
((((((a=1),2),3),4),5),6);
因此,您需要重载赋值运算符以返回类似数组的对象,并使用它来重载逗号运算符。
答案 2 :(得分:1)
我在整个C ++生活中见过的唯一有用的重载operator,
应用是Boost.Assignment,即使这在C ++ 11中已经变得多余了,多亏{{1 }}
尽管如此,知道它是如何工作也不会有什么坏处,所以我建议你只看一下Boost源代码。它是开源的,您可以免费下载,并且已知它可以正常工作。