4

可能重复:
运算符 [] [] 重载

我创建了一个包含一个数组的类,该数组包含(在一行中)给定二维数组中的所有数字。例如给定:类对象中{{1,2}{3,4}}的字段包含. 我想为这个类重载 [][] 运算符,这样它就可以这样工作bT{1,2,3,4}

T* t.....new etc.
int val = (*t)[i][j]; //I get t->b[i*j + j] b is an 1dimension array

    class T{
    public:
        int* b;
        int m, n;
        T(int** a, int m, int n){
            b = new int[m*n];
            this->m = m;
            this->n = n;
            int counter = 0;
            for(int i  = 0; i < m; i++){
                for(int j = 0; j < n; j++){
                    b[counter] = a[i][j];
                    counter++;
                }
            }
        }
int main()
{
    int m = 3, n = 5, c = 0;
    int** tab = new int*[m];
    for(int i = 0; i < m; i++)
           tab[i] = new int[n];
    for(int i  = 0; i < m; i++){
        for(int j = 0; j < n; j++){
            tab[i][j] = c;
            c++;
            cout<<tab[i][j]<<"\t";
        }
        cout<<"\n";
    }


    T* t = new T(tab,3,5);

    };
4

2 回答 2

5

你不能。您必须重载operator[]才能返回代理对象,而代理对象又要重载operator[]才能返回最终值。

就像是:

class TRow
{
public:
    TRow(T &t, int r)
    :m_t(t), m_r(r)
    {}
    int operator[](int c)
    {
        return m_t.tab[m_t.n*m_r + c];
    }
private:
    T &m_t;
    int m_r;
};

class T
{
    friend class TRow;
    /*...*/
public:
    TRow operator[](int r)
    {
         return TRow(*this, r);
    }
};

您可以直接保存指向行的指针,而不是保存 a T&,这取决于您。TRow

此解决方案的一个不错的功能是您可以将 TRow 用于其他事情,例如operator int*().

于 2013-02-01T19:02:23.763 回答
2

在二维数组的情况下,您不需要创建代理类型。只需使用int*

#include <iostream>

class T {
public:
  int m, n;
  int *b;
  T(int m, int n) : m(m), n(n), b(new int[m*n]) {
  }
  int*operator[](std::size_t i) {
    return &b[i*m];
  }
};

int main () {
  T t(2,2);
  t[0][0] = 1;
  t[0][1] = 2;
  t[1][0] = 3;
  t[1][1] = 4;
  std::cout << t.b[0] << t.b[1] << t.b[2] << t.b[3] << "\n";
}
于 2013-02-01T20:36:32.837 回答