免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 2050 | 回复: 11
打印 上一主题 下一主题

如何定义operator[][]?? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-07-19 10:51 |只看该作者 |倒序浏览
一直以来都有这样的困惑,有什么办法做到operator[][]甚至operator[][][]的重载?请教各位!

  1. class tt{

  2.         int a[5][10];
  3.         int operator[](int i)
  4.         {
  5.                 return a[i][8];
  6.         };

  7.         int operator[][](int i,int j)  //编译过不了
  8.         {
  9.                 return a[i][j];
  10.         };

  11. };

  12. #include <stdio.h>
  13. main()
  14. {
  15.         int a[5][10];
  16.         printf("%d",a[0][2]);
  17. }
复制代码

论坛徽章:
0
2 [报告]
发表于 2006-07-19 12:51 |只看该作者
1. 重载操作符[], 返回值是T*类型
2. 重载操作符[],返回值为某个类C1的对象;再重载类C1的操作符[],返回值为T&

三维数组依次类推

论坛徽章:
0
3 [报告]
发表于 2006-07-19 12:52 |只看该作者
  1. #include <stdlib.h>
  2. #include <time.h>
  3. #include <vector>

  4. template<class T> class C2dArray {

  5. public:
  6.         class d1 {
  7.         private:
  8.                 T* m_pData;
  9.         public:
  10.                 d1(C2dArray& d2_arr)
  11.                 {
  12.                         m_pData = &d2_arr.m_data;
  13.                 }
  14.                
  15.                 T& operator[] (int idx)
  16.                 {
  17.                         return *m_pData;
  18.                 }
  19.         };
  20.        
  21.        
  22. private:
  23.         T m_data;

  24. public:       
  25.         d1 operator[] (int idx)
  26.         {
  27.                 d1 d1_obj(*this);
  28.                 return d1_obj;
  29.         }
  30.        
  31.         C2dArray()  {}
  32.         ~C2dArray() {}
  33. };



  34. int main(int argc, char* argv[])
  35. {
  36.         C2dArray<int>  x;
  37.        
  38.         printf("%d\n", x[2][3]);

  39.         return 0;
  40. }
复制代码

论坛徽章:
0
4 [报告]
发表于 2006-07-19 12:56 |只看该作者
[][]这个不是一个运算符号,所以你那样是不能重载的

论坛徽章:
0
5 [报告]
发表于 2006-07-19 15:24 |只看该作者
好方法,用类的嵌套,谢谢!

论坛徽章:
0
6 [报告]
发表于 2006-07-19 16:50 |只看该作者
以前经常这么用:
map<string, map<string, string> > multiMap;

...

论坛徽章:
0
7 [报告]
发表于 2006-07-19 17:58 |只看该作者
原帖由 isjfk 于 2006-7-19 16:50 发表
以前经常这么用:
map<string, map<string, string> > multiMap;

...


每当你这么用的时候,我就晕了

我更倾向于在0x版的c++语法中涵盖operator[][]...[]的定义,最少支持256层。不过不是我说了算,05年的草案中没有这方面的变化,估计我提这个建议他们不会采纳,懒的理他们了,反正用到的场合还很少,也非必要

[ 本帖最后由 liubinbj 于 2006-7-19 18:02 编辑 ]

论坛徽章:
0
8 [报告]
发表于 2006-07-19 19:43 |只看该作者

论坛徽章:
0
9 [报告]
发表于 2006-07-19 23:44 |只看该作者
原帖由 converse 于 2006-7-19 19:43 发表
看我的博客:
http://www.cppblog.com/converse/archive/2006/03/22/4445.html


不错,不过还是不喜欢用map,而且map的效率不一定比类嵌套好。

论坛徽章:
0
10 [报告]
发表于 2006-07-20 11:26 |只看该作者
原帖由 prc 于 2006-7-19 12:52 发表
[code]#include <stdlib.h>
#include <time.h>
#include <vector>

template<class T> class C2dArray {

public:
        class d1 {
        private:
                T* m_pData;
        public:
                d1(C2dAr ...



又学一招
其乐无穷啊~~
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP