error: reference to non-static member function must be called
在刷leetcode 剑指45时遇到错误:
这是因为我在类成员函数中调用三个参数的sort(),并且也将cmp函数定义为类成员函数,需要将cmp函数在类中定义为static!
代码如下:
class Solution {
public:
static bool cmp(int a, int b){
return to_string(a)+to_string(b)<to_string(b)+to_string(a);
}
string minNumber(vector<int>& nums) {
sort(nums.begin(),nums.end(),tmp);
string s ="";
for(int i= 0; i<nums.size();++i){
s += to_string(nums[i]);
}
return s;
}
};
为什么cmp函数在作为类成员函数的时候一定需要static修饰呢?这是因为所有我们在类内定义的非static成员函数在经过编译后隐式的为他们添加了一个this指针参数!变为了:
bool cmp(Solution *this, int a, int b)
而标准库的sort()函数的第三个cmp函数指针参数中并没有这样this指针参数,因此会出现输入的cmp参数和sort()要求的参数不匹配,从而导致了:
error: reference to non-static member function must be called
而我们知道static静态类成员函数是不需要this指针的,因此改为静态成员函数即可通过!
参考:https://blog.csdn.net/weixin_40710708/article/details/111269356