error: no matching function for call to

原文地址:error: no matching function for call to 作者:brightmoon

今天用c++标准模板库(STL)中的sort算法给一个vector>对象排序时遇到了题目中的编译时错误:(问题虽然简单,却让我弄了整整一下午)

error: no matching function for call to'sort(__gnu_cxx::__normal_iterator*  ......

note: candidates are: void std::sort(_RandomAccessIterator,_RandomAccessIterator, _Compare) ......

 

程序是这样的:

fourdct.h

boolPhasePairLess(pairp1,pairp2);//这是fourdct类的成员函数。

 

fourdct.cpp

vector> phasePairVector;

....

sort(phasePairVector.begin(),phasePairVector.end(),PhasePairLess);

 

boolFourDCT::PhasePairLess(pairp1,pair p2)
{
 return p1.second }

错误的原因是比较函数PhasePairLess应当是static的。将头文件中的函数声明改为:

static boolPhasePairLess(pairp1,pair p2);

编译通过。注意,cpp文件中不用static。

你可能感兴趣的:(C++_study,STL_study)