C++ overload operator [ ][ ](C++ 重载运算符 [ ][ ])
问题描述
我有 CMatrix 类,其中是指向值数组的双指针".
I have class CMatrix, where is "double pointer" to array of values.
class CMatrix {
public:
int rows, cols;
int **arr;
};
我只需要通过键入以下内容来访问矩阵的值:
I simply need to access the values of matrix by typing:
CMatrix x;
x[0][0] = 23;
我知道如何使用:
x(0,0) = 23;
但我真的需要以另一种方式做到这一点.任何人都可以帮助我吗?请?
But I really need to do that the other way. Can anyone help me with that? Please?
最后感谢大家的帮助,我是这样做的...
Thank you guys for help at the end I did it this way...
class CMatrix {
public:
int rows, cols;
int **arr;
public:
int const* operator[]( int const y ) const
{
return &arr[0][y];
}
int* operator[]( int const y )
{
return &arr[0][y];
}
....
感谢您的帮助,我真的很感激!
Thank you for your help I really appreciate it!
推荐答案
你不能重载operator [][]
,但这里常用的习惯用法是使用代理类, 即重载 operator []
以返回重载了 operator []
的不同类的实例.例如:
You cannot overload operator [][]
, but the common idiom here is using a proxy class, i.e. overload operator []
to return an instance of different class which has operator []
overloaded. For example:
class CMatrix {
public:
class CRow {
friend class CMatrix;
public:
int& operator[](int col)
{
return parent.arr[row][col];
}
private:
CRow(CMatrix &parent_, int row_) :
parent(parent_),
row(row_)
{}
CMatrix& parent;
int row;
};
CRow operator[](int row)
{
return CRow(*this, row);
}
private:
int rows, cols;
int **arr;
};
这篇关于C++ 重载运算符 [ ][ ]的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++ 重载运算符 [ ][ ]
基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01