開發平台(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改成靜態函數,但還是不知從何下手,請問版上高手,謝謝!!