gpt4 book ai didi

c++是否可以指向定义了变量的函数

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:25:11 24 4
gpt4 key购买 nike

我依稀记得python允许类似的东西

def foo( x ):
....

f = foo( 5 )

如果我有一个成员函数,在 C++ 中是否可能有类似的东西

class C {

void foo( int x ) { ... }

so that I can define a pointer or variable that would effectively point at foo( 5 )

我之所以要这样做是因为我有很多监听器,我需要订阅一个回调并保留被调用者的信息

class C {
map<int, ptrSender> m_sender;

void subscribe() {
for (const auto& p : m_sender) {
p .second->register( Callback( this, &C::onCall ) )
}

我的问题是 onCall 不返回哪个发件人回电,但我需要此信息。所以,与其做这样的事情

    void subscribe() {
m_sender[0]->register( Callback( this, onCall_0 ) );
m_sender[1]->register( Callback( this, onCall_1 ) );
....

void onCall( int sender_id ) { ... }
void onCall_0() { onCall( 0 ); }
void onCall_1() { onCall( 1 ); }
....

我希望我可以将一些东西传递到寄存器中,以返回带有预设参数的调用。这可能吗?

编辑:我正在尝试使用 lambda 函数,但我遇到了以下问题

auto setCall= [this]( int v ) { &C::onCall( v ); }

给出编译错误

lvalue required as unary&opeand

这个

auto setCall= [this]( int v ) { C::onCall( v ); }
....
p.second->register( Callback( this, &setCall( p.first) ) ); /// <__ error now here

再次提示,现在在第二行

lvalue required as unary&operand

还有这个

auto setCall= [this]( int v ) { C::onCall( v ); }
....
p.second->register( Callback( this, setCall( p.first) ) ); /// <__ error now here

提示 void 表达式的无效使用,但我假设我必须传入一个引用以使 register 函数快乐

回调似乎定义为

#  define CallBack(obj,func) ProfiledBasicCallBack(obj,fastdelegate::FastDelegate0<void>(obj,func),#func)

最佳答案

是的,您可以使用 std::bind .用法示例:http://ideone.com/akoWbA .

void foo( int x ) { cout << x << endl; }
auto x = std::bind(foo, 5);
x();

但是,对于现代 C++,您应该使用 lambda。像这样:

void foo( int x ) { cout << x << endl; }
auto x = []() { foo(5); };
x();

请注意,在此示例中,此 foo 函数在类 C 之外。如果你希望将它包含在里面,那么使用 std::bind 你需要传递你希望调用的对象的实例,例如

C c;
auto x = std::bind(&C::foo, &c, 5);
x();

或使用 lambda:

C c;
auto x = [&c]() { c.foo(5); };
x();

关于c++是否可以指向定义了变量的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41134390/

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