我在lambda中有lambda,我有捕获它的问题。有没有办法解决这个问题?也许是某种别名吗?
auto late_connect = wakeup_signal_notify_to_connect.connect([this]()
{
auto wakeup = wakeup_signal_ptr->connect([this]()
{
//here I want to have this from level up
});
});
我尝试使用别名:
auto late_connect = wakeup_signal_notify_to_connect.connect([this]()
{
auto* alias_to_this = this;
this->OnInvokeUpdate(); //here I can obtain thread local storage from boost
auto wakeup = wakeup_signal_ptr->connect([alias_to_this]()
{
alias_to_this->OnInvokeUpdate(); //here I cannot obtain thread local storage from boost
}
});
});
伙计们,我忘了告诉你,当我在lambda中使用lambda时,我有来自boost的问题。
答案 0 :(得分:0)
这可以解决您的问题:
auto late_connect = wakeup_signal_notify_to_connect.connect([this]()
{
auto that = this;
auto wakeup = wakeup_signal_ptr->connect([that]()
{
//your stuff
});
});
编辑:我认为这样,我的解决方案毫无意义。内部lambda捕获的This
从级别开始仍然是this
,因此您不必像在JavaScript函数中那样创建别名。请记住,lambdas只能访问定义它们的范围,而不能访问它们被调用的位置。如果这不是您的问题,请提供更多信息。