如何为表单a [x] [y]创建重载运算符?

时间:2013-03-24 12:43:49

标签: c++ overloading

我有一个简单的Matrix类,我必须以a[index1][index2]格式读取/写入。

例如:

Matrix a;

a[1][2] = 5;

我如何在C ++中实现它?感谢。

4 个答案:

答案 0 :(得分:6)

这是一个很好的基础实现,可以完全满足您的需求。

更新(2013年9月26日):我已经对代码进行了大量改进。

模板中的T类型只需满足std::vector的要求。

#include <vector>
#include <stdexcept>

template<typename T>
class matrix {
    class row {
        std::vector<T> values;
    public:
        row(std::size_t n)
            : values(n, T()) {}

        T& operator[] (std::size_t index) {
            if (index < values.size())
                return values[index];
            else
                throw std::domain_error("Matrix column index out of bounds.");
        }
        const T& operator[] (std::size_t index) const {
            if (index < values.size())
                return values[index];
            else
                throw std::domain_error("Matrix column index out of bounds.");
        }

        std::size_t size() const { return values.size(); }
    };

    std::vector<row> rows;

public:
    matrix(std::size_t m, std::size_t n)
        : rows(m, row(n)) {}

    row& operator[](std::size_t index) {
        if (index < rows.size())
            return rows[index];
        else
            throw std::domain_error("Matrix row index out of bounds.");
    }
    const row& operator[](std::size_t index) const {
        if (index < rows.size())
            return rows[index];
        else
            throw std::domain_error("Matrix row index out of bounds.");
    }

    std::size_t row_count() const { return rows.size(); }
    std::size_t col_count() const {
        if (rows.size()) return rows[0].size();
        return 0;
    }

    std::size_t size() const { return row_count() * col_count(); }
};

为方便起见,此助手可用于打印矩阵。

#include <ostream>

template<typename T>
std::ostream& operator <<(std::ostream& o, const matrix<T>& mat) {
    for (std::size_t i = 0u; i < mat.row_count(); ++i) {
        for (std::size_t j = 0u; j < mat.col_count(); ++j) {
            o << mat[i][j] << ' ';
        }
        o << '\n';
    }
    return o;
}

只为你,一个用例来测试这个:

int main() {
    matrix<int> mat_0(2, 3);
    matrix<double> mat_1(1, 2);

    mat_0[0][0] = 2;
    mat_0[0][1] = 3;
    mat_0[0][2] = 4;
    mat_0[1][0] = 3;
    mat_0[1][1] = 7;
    mat_0[1][2] = 9;

    mat_1[0][0] = 0.43;
    mat_1[0][1] = 213.01;

    std::cout << mat_0;
    std::cout << '\n';
    std::cout << mat_1;

    return 0;
}

答案 1 :(得分:6)

您需要重载Matrix::operator[],以便它返回一个表示矩阵中列的辅助类。该助手类还应重载operator[]以访问该列中的元素。

但是,以这种方式实现它可能过于复杂。相反,它可能更容易实现operator()并让它将两个索引作为参数:

int& Matrix::operator()(int i, int j)
{
  return internal_array[i][j];
}

答案 2 :(得分:2)

使用class RowType定义嵌套operator[],将引用返回Matrix元素,并定义Matrix operator []以将ref返回给ele { RowType

以下是thema的变体(第一个答案附近)。我只是相信你shuld不使用new-delete ..啊,和模板,使用int,double,complex,(string!?)等。这不是一个完整的实现,我没有调试它。这只是一个想法。

#include <vector>

template <typename Num>
class Matrix {
   public:
    class RowType 
    { public:
       RowType () { }
       RowType (unsigned int columnCount):values(columnCount,Num()) {}
             int& operator[](unsigned int index)     {return values[index];}
       const int& operator[](unsigned int index)const{return values[index];}

       std::vector<Num> values;
    };

    Matrix() {  }
    Matrix(unsigned int rowCount, unsigned int columnCount)
              :rows(rowCount, MatrixRow<Num>(columnCount) )  {}
          RowType& operator[](unsigned int index)     {return rows[index]);}
    const RowType& operator[](unsigned int index)const{return rows[index]);}

  private:  std::vector<RowType<Num>> rows;
};

....
Matrix<int> a(10,10);
a[9][9]=1;

答案 3 :(得分:1)

您可以创建1d Matrix类,例如Matrix1D并重载其[]运算符,以便您访问特定索引处的值。

然后你可以创建一个2d Matrix类,例如Matrix2D并重载其[]运算符,以便您访问其中包含的Matrix1D类之一。

这样您就可以使用aMatrix2D Matrix1D转换为[],然后转换为第二[]的值。