gpt4 book ai didi

c++ - 将 mem_fun 与具有多个参数的函数一起使用

转载 作者:搜寻专家 更新时间:2023-10-31 01:56:44 26 4
gpt4 key购买 nike

我正在尝试使用 boost:function 类。在下面的示例中,foo() 调用一切正常,但如果我想对 sum() 函数执行相同的操作,gcc 编译器会提示这一行:

_f2 = std::bind1st(std::mem_fun(f), x);

mem_func 是否只接受带有一个参数的函数(指向我绑定(bind)的类对象的指针除外)?如果可以,我还可以使用什么其他功能?或者我该如何更改这行代码?

我认为 boost:bind() 有一种方法,但我还没有弄清楚如何在这种情况下使用它。

完整代码如下:

#include <boost/function.hpp>
#include <iostream>

class X
{
public:

int foo(int i){return i;};
int sum(int i, int j) {return i+j;};
};

class Func
{

public:

Func(X *x, int (X::* f) (int))
{
_f1 = std::bind1st(std::mem_fun(f), x);
std::cout << _f1(5); // Call x.foo(5)
};

Func(X *x, int (X::* f) (int, int))
{
_f2 = std::bind1st(std::mem_fun(f), x);
std::cout << _f2(5, 4); // Call x.foo(5,4)
};

private:

boost::function<int (int)> _f1;
boost::function<int (int, int)> _f2;
};


int main()
{

X x;

Func func1(&x, &X::foo);
Func func2(&x, &X::sum);

return 0;
}

最佳答案

您可以使用 boost 绑定(bind):

_f2 = boost::bind(f, x, _1, _2);

关于c++ - 将 mem_fun 与具有多个参数的函数一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6626467/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com