代码之家  ›  专栏  ›  技术社区  ›  Jacob

矢量:迭代器-无效?[复制品]

  •  3
  • Jacob  · 技术社区  · 14 年前

    可能重复:
    g++ “is not a type” error

    以下内容无法编译:

    1    template<typename T>
    2    void foo(std::vector<T>::iterator & i)
    3    {  
    4    }
    

    在Visual Studio上,我得到以下错误:

    >(2) error C2065: 'i' : undeclared identifier
    >(4) warning C4346: 'std::vector<_Tp>::iterator' : dependent name is not a type
         prefix with 'typename' to indicate a type
    >(4) error C2182: 'foo' : illegal use of type 'void'
    >(4) error C2998: 'int foo' : cannot be a template definition
    
    1 回复  |  直到 14 年前
        1
  •  14
  •   GManNickG    14 年前

    std::vector<T>::iterator 是一种类型 依赖的 在模板参数上,即 T . 因此,您应该以它为前缀 typename :

    template<typename T>
    void foo(typename std::vector<T>::iterator & i)
    {  
    }
    

    Here's an explanation.