0

我在下面使用这个类

template<typename T>
class array_2d 
{
public:
    std::size_t data;
    std::size_t col_max;
    std::size_t row_max;
    std::vector<T> a;

    array_2d(std::size_t col, std::size_t row) : data(col*row), col_max(col), row_max(row), a(data)
    {}

    T& operator()(std::size_t col, std::size_t row) 
    {
        assert(col_max > col && row_max > row);
        return a[col_max*col + row];
    }
};

并像这样初始化它

    array_2d<CString> tableData(5, 2);
    for(int r = 0; r < 5; r++)
        for(int c = 0; c < 2; c++)
            tableData(r, c) = "Test";

并不断回来说我超出了向量的范围。我已经尝试了几个小时来获得一个成功的二维 CString 数组。

4

3 回答 3

3

tableData(c, r) = "Test";

于 2013-02-07T13:50:15.670 回答
1

呃..你的参数/参数顺序混淆了......

于 2013-02-07T13:50:14.203 回答
1

tableData(r, c) = "Test";

对比

T& operator()(std::size_t col, std::size_t row)

这肯定行不通。

于 2013-02-07T13:55:52.603 回答