sort()的第三个参数tmp

本文解释了在LeetCode题目中遇到的‘reference to non-static member function must be called’错误,关键在于类内非静态cmp函数需在sort中使用静态修饰,以避免this指针问题。通过实例和链接分享了解决方法。
摘要由CSDN通过智能技术生成

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值