3

我正在用 C++ 创建一个模板类,并在std::list其中使用。出于某种原因,我的编译器不喜欢我尝试为列表声明和构造迭代器的方式。

在我的 HashTable.h 文件中,我有:

template <typename T> class HashTable {
    bool find(T thing) {
        // some code
        list<T>::iterator iter;
        for (iter = table[index].begin(); iter != table[index].end(); ++iter) {
            // some more code
        }
    }

}

它给了我HashTable.h:77: error: expected ';' before "iter"一个错误信息。

迭代器的正确语法是什么?

或者是对的,我需要为我打算在我的 HashTable 模板中使用的每个类创建一个迭代器类?如果是这样,那就糟透了……

4

1 回答 1

7

您需要使用它typename来告诉编译器list<T>::iterator在这种情况下确实是一种类型。

typename list<T>::iterator iter;

原因相当模糊;有关更多详细信息,请参阅 C++ 常见问题解答:http: //www.parashift.com/c++-faq-lite/templates.html#faq-35.18

于 2012-06-09T22:42:42.013 回答