如何为二维数组的包装类重载数组索引运算符?
#define ROW 3
#define COL 4
class Matrix
{
private:
int mat[ROW][COL];
//.....
//.....
};
int main()
{
Matrix m;
int a = m[0][1]; // reading
m[0][2] = m[1][1]; // writing
}
我直接认为不可能重载 [][] 。
我想我必须间接地做到这一点,但如何实施呢?
#define ROW 3
#define COL 4
class Matrix
{
private:
int mat[ROW][COL];
//.....
//.....
};
int main()
{
Matrix m;
int a = m[0][1]; // reading
m[0][2] = m[1][1]; // writing
}
I think directly it not possible to overload [][] .
I think i have to do it indirectly but how to implement it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更简单的解决方案是使用operator(),因为它允许多个参数。
简单的方法是第一个运算符[]返回一个中间对象,第二个运算符[]返回数组中的值。
The easier solution is to use the operator() as it allows multiple parameters.
The easy way is that the first operator[] returns an intermediate object that the second operator[] returns the value from the array.
由于您想将元素存储在固定大小的数组中,这将相当简单:
这应该可行。
此外,您可能需要用适当的常量替换#define,或者使用类型 (int) 和大小 (3x4) 的模板参数,以使您的矩阵类更加通用。如果你想支持动态大小,你的operator[]需要返回代理对象。这是可能的,但您可能应该更喜欢使用带有两个索引参数的operator()来进行元素访问。
Since you want to store your elements in fixed-size arrays it'll be fairly easy:
That should work.
In addition, you may want to replace the
#define
s with proper constants or use template parameters for type (int) and size (3x4) to make your matrix class more generic. If you want to support dynamic sizes your operator[] needs to return proxy-objects. It's possible but you should probably prefer operator() with two index parameters for element access.