开发平台(Platform): (Ex: Win10, Linux, ...)
Linux
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
GCC
问题(Question):
使用compare function 一直编译不过
程式码(Code):(请善用置底文网页, 记得排版,禁止使用图档)
struct Info{
float score;
float rank;
};
bool comp(const Info &Info1, consta Info &Infor2){
return Info1.score>Infor2.score;
}
void MyFunction(){
...
vector<Info>my
std::sort(my.begin(), my.end(), comp); //error here
...
}
int main{
...
MyFunction()
}
补充说明(Supplement):
网络上好像是说需要把comp改成静态函数,但还是不知从何下手,请问版上高手,谢谢!!