收起
Mycompare::operator()函数少了const限定
Mycompare::operator()
const
struct Mycompare { bool operator() (int v1, int v2) const { return v1 > v2; } };
报告相同问题?