gpt4 book ai didi

c++ - 是否可以在C++中制作带参数的函数指针

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

我正在 try catch 一个函数指针以传递给一个仿函数,但我不明白为什么我做不到。

仿函数类:

template <class C>
class MyFunctor : public BaseFunctor {
public:
typedef long (C::*t_callback)(const long, const char *);

MyFunctor (void) : BaseFunctor(), obj(NULL), callback(NULL) {}
virtual long operator() (const long a, const char *b) {
if ( obj && callback ) {
(obj->*callback)(a,b);
}
}

C *obj;
t_callback callback;
};

代码的其他地方:

函数签名是long C::Func (const long, const char *)

MyFunctor funky;
funky.obj = this;
funky.callback = Func;

然后我得到错误:

...函数调用缺少参数列表; ...

为什么这不起作用?

编辑:在处理下面的建议时,我遇到了一个简单的解决方案来使我的特定实现工作。

funky.callback = &C::Func;

最佳答案

我不是 100% 确定你试图从你的代码中做什么,但有两个比函数指针更容易使用的 C++ 特性是 std::function std::mem_fn 这是使用 std::function 的示例从网站。

#include <functional>
#include <iostream>

struct Foo {
Foo(int num) : num_(num) {}
void print_add(int i) const { std::cout << num_+i << '\n'; }
int num_;
};

void print_num(int i)
{
std::cout << i << '\n';
}

struct PrintNum {
void operator()(int i) const
{
std::cout << i << '\n';
}
};

int main()
{
// store a free function
std::function<void(int)> f_display = print_num;
f_display(-9);

// store a lambda
std::function<void()> f_display_42 = []() { print_num(42); };
f_display_42();

// store the result of a call to std::bind
std::function<void()> f_display_31337 = std::bind(print_num, 31337);
f_display_31337();

// store a call to a member function
std::function<void(const Foo&, int)> f_add_display = &Foo::print_add;
Foo foo(314159);
f_add_display(foo, 1);

// store a call to a function object
std::function<void(int)> f_display_obj = PrintNum();
f_display_obj(18);
}

这是您代码中的函数指针:

typedef long (C::*t_callback)(const long, const char *);

使它成为 std::funciton做:

std::function<long(const long,const char*)> t_callback = something ;

关于c++ - 是否可以在C++中制作带参数的函数指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18200420/

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