你好。我正在尝试运行以下代码(仅用于培训目的):
#include<iostream>
#include <list>
template<class T,
template<class ,class=std::allocator<T> >class kont >
typename std::iterator_traits<T>::value_type foo_test(typename kont<T>::iterator b){return *b;}
template <class Iter>
typename std::iterator_traits<Iter>::value_type minimum(Iter b, Iter e)
{
Iter m = b;
/*
CODE
*/
return *m;
}
int main(void){
std::list<int> x;
x.push_back(10);
x.push_back(100);
std::cout <<minimum(x.begin(),x.end());
//std::cout <<foo_test<int,std::list>(x.begin());
}
最小功能正常,没有问题。但是,当我取消注释最后一行时,我收到以下错误:
main.cpp:33:50: error: no matching function for call to ‘foo_test(std::__cxx11::list<int>::iterator)’
std::cout <<foo_test<int,std::list>(x.begin());
main.cpp:7:46: note: template argument deduction/substitution failed:
main.cpp:33:50: required from here
main.cpp:7:46: error: no type named ‘value_type’ in ‘struct std::iterator_traits<int>’
第一个模板出了什么问题呢?我非常感谢你的解释。
答案 0 :(得分:3)
您将int
作为第一个模板参数T
。因此std::iterator_traits<T>::value_type
是std::iterator_traits<int>::value_type
,这是不正确的。你的意思是
typename std::iterator_traits<typename kont<T>::iterator>::value_type
。