c – std :: pair期待’type’,但我给它一个类型

c – std :: pair期待’type’,但我给它一个类型,第1张

概述这是我的代码: typedef std::hash_multimap<Vertice<VerticeType, WeightType>*, Edge<VerticeType, WeightType>*> ght;std::pair<ght::iterator, ght::iterator> getEdgesFromVertice(Vertice<VerticeType, WeightType>* 这是我的代码:

typedef std::hash_multimap<Vertice<VerticeType,WeightType>*,Edge<VerticeType,WeightType>*> ght;std::pair<ght::iterator,ght::iterator> getEdgesFromVertice(Vertice<VerticeType,WeightType>*);

当我尝试编译它时,它给我一个错误说:

error: type/value mismatch at argument 1 in template parameter List for ‘template<class _T1,class _T2> struct std::pair’error:   expected a type,got ‘__gnu_cxx::hash_multimap::iterator’

但是不是,std :: hash_multimap :: iterator是一个类型?我在网上看到的所有例子都对std :: hash_multimap< T1,T2> :: equal_range(key)的返回类型使用相同的表示法

任何帮助表示赞赏.谢谢 :)

解决方法 这看起来像是在模板中,VerticeType等是模板参数.在这种情况下,您缺少typename:

std::pair<typename ght::iterator,typename ght::iterator> ...

除非使用typename,否则从属名称假定为not name types.

总结

以上是内存溢出为你收集整理的c – std :: pair期待’type’,但我给它一个类型全部内容,希望文章能够帮你解决c – std :: pair期待’type’,但我给它一个类型所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1221878.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存