【发布时间】:2011-01-11 11:28:15
【问题描述】:
我已经写了那几行:
#include <vector>
#include <algorithm>
#include <stdlib.h>
#include <time.h>
using namespace std;
template <class T> struct First
{
T num;
First() {}
First(const T &a) : num(a) {}
};
template <typename var> bool criterio(First<var> &primo, First<var> &secondo)
{
return (primo.num < secondo.num);
}
int main()
{
vector< First<int> > f;
srand (time(NULL));
for(int i=0; i<20; i++) f.push_back( First<int>(rand() % 20) );
sort(f.begin(),f.end(),criterio);
return 0;
}
我用“g++ program2.C”编译,答案是:
program2.C:在函数“int main()”中:
program2.C:28: error: no matching function for call to'sort(__gnu_cxx::__normal_iterator*, std::vector, std::allocator >> > , __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >,未解析的重载函数类型)'
我不知道这是什么问题...你能帮帮我吗?
感谢您的帮助...
【问题讨论】: