宣布指向矢量的字符串向量

时间:2011-10-12 03:27:19

标签: c++ class pointers vector stdvector

我有一个2D字符串表(使用STL向量),我正在尝试修改,以便表是一个指向字符串向量的指针向量。我知道这将需要更改构造函数,以便动态创建行,并将指针插入到表中,但我不知道如何首先创建此表。

在我的.h文件中:

class StringTable
{
public:

    StringTable(ifstream & infile);

    // 'rows' returns the number of rows
    int rows() const;

    // operator [] returns row at index 'i';
    const vector<string> & operator[](int i) const;

private:
    vector<vector<string> >  table;

};

在我的.cpp文件中:

StringTable::StringTable(ifstream & infile)
{
    string          s;
    vector<string>  row;

    while (readMultiWord(s, infile))  // not end of file
    {
        row.clear();
        do
        {
            row.push_back(s);
        }
        while (readMultiWord(s, infile));
        table.push_back(row);
    }
}

int StringTable::rows() const
{
    return table.size();
}

const vector<string> & StringTable::operator[](int i) const
{
    return table[i];
}

我觉得这可能是一个非常简单的开关,但我没有很多使用矢量的经验,我不知道从哪里开始。非常感谢任何指导!

2 个答案:

答案 0 :(得分:1)

看起来你正在尝试创建某种形式的多维向量。你考虑过使用提升吗? http://www.boost.org/doc/libs/1_47_0/libs/multi_array/doc/user.html

答案 1 :(得分:-1)

确定最简单的方法是使用typedef。此外,您似乎在头文件中使用'using'子句 - 您永远不应该这样做。

class StringTable
{
    public:
         typedef std::vector<std::string> Strings_t;
         std::vector<Strings_t *> table;
};

不要忘记在添加现在时你需要分配内存,即:

StringTable tbl;
StringTable::Strings_t *data_ptr=new StringTable::Strings_t;

data_ptr->push_back("foo");
data_ptr->push_back("bar");

tbl.table.push_back(data_ptr);

[改正]