如何构造可以替换typedef vector <vector <t >> Type的类

时间:2019-04-27 15:36:12

标签: c++ class c++11 construct

我正在学习C ++中的类,并且想构造自己的类,而不是使用2D向量“ report”。我写了一些代码:

typedef vector<vector<T>> C_type

现在我有

class T {
    public:
    int a;
    int b;
    T(int a, int b) : a(a), b(b){}

};

我想改用一个类,然后创建一个构造函数并对其进行初始化,例如:

typedef vector<vector<T>> C_type;

我想将2D向量用作类成员。谢谢。

1 个答案:

答案 0 :(得分:0)

从这里开始很简单:

#include <iostream>
#include <vector>

template<typename T>
class C_type {
public:
    C_type(int rows, int cols) : _vec(std::vector<std::vector<T>>(rows, std::vector<T>(cols))) {}
    C_type() : C_type(0, 0) {}

    T get(int row, int col) { return this->_vec.at(row).at(col); }
    void set(int row, int col, T value) { this->_vec.at(row).at(col) = value; }

    size_t rows() { return this->_vec.size(); }
    size_t cols() { return this->_vec.front().size(); }

private:
    std::vector<std::vector<T>> _vec;
};

int main() {

    C_type<int> c(2, 2);

    for ( unsigned i = 0; i < c.rows(); ++i ) {
        for ( unsigned j = 0; j < c.cols(); ++j ) {
            c.set(i, j, i + j);
        }   
    }

    for ( unsigned i = 0; i < c.rows(); ++i ) {
        for ( unsigned j = 0; j < c.cols(); ++j ) {
            std::cout << c.get(i, j) << " ";
        }   
        std::cout << "\n";
    }

    return 0;
}