gpt4 book ai didi

c++ - 如何在 boost::coroutine 中正确使用类成员函数?

转载 作者:行者123 更新时间:2023-11-30 02:37:09 24 4
gpt4 key购买 nike

我目前正在使用 boost::asymmetric_coroutine。假设我们在全局命名空间中有一个普通函数:

void foo(boost::coroutines::asymmetric_coroutine<int>::push_type & sink)
{
//do something
sink(100);
//do something else
}

在这种情况下,我们可以按以下方式使用此函数创建并执行协程:

boost::coroutines::asymmetric_coroutine<void>::pull_type coro{foo};

我需要做的是以同样的方式使用类成员函数。据我了解,boost::bind 应该以某种方式使用,但是,以下代码不起作用:

class MyClass
{
public:
void create_coro()
{
boost::coroutines::asymmetric_coroutine<int>::pull_type coro
{
boost::bind(&MyClass::foo, _1);
};
}

private:
void foo(boost::coroutines::asymmetric_coroutine<int>::push_type & sink)
{
//do something
}
}

它引发的错误是

no matching function to call to 'get_pointer(const boost::coroutines::push_coroutine&)'

我该如何正确地做到这一点?

最佳答案

应该是

    boost::coroutines::asymmetric_coroutine<int>::pull_type coro
{
boost::bind(&MyClass::foo, this, _1);
};

注意 this,因为您使用了成员函数。

关于c++ - 如何在 boost::coroutine 中正确使用类成员函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31957740/

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