可能重复:
Where and why do I have to put the “template” and “typename” keywords?
我正在使用g ++ 4.6,我试图根据所使用的字符类型来模拟我的类,但我的变量不仅仅是字符,而是字符串的字符串。所以我试过这样的事情:
template<typename T>
class Node
//...
//constructor
Node(std::basic_string<T> str, std::basic_string<T>::iterator it)
{
}
//usage
Node<char16_t> start;
但是我明白了
'std :: basic_string&lt; _CharT,std :: char_traits&lt; _CharT&gt;,std :: allocator&lt; _Tp1&gt; &gt; :: iterator'不是类型
当我将构造函数arg列表中的第二个T替换为char16_t时,它会编译。
答案 0 :(得分:6)
为什么你的构造函数也不是FSDNode
?
std::basic_string<T>::iterator
是一种依赖类型,因为它取决于模板参数T
。因此,您需要将typename
添加到参数类型。
FSDNode(std::basic_string<T> str, typename std::basic_string<T>::iterator it)
{
}