gpt4 book ai didi

c++ - 在 lambda 中通过引用捕获 unique_ptr 如何正常工作?

转载 作者:行者123 更新时间:2023-11-27 23:36:31 25 4
gpt4 key购买 nike

在一个函数中我有这个:

void main() {
auto poller = std::make_unique<Poller>();
auto polling_func = [&poller] {
poller->Poll();
};
// assume foo signature is correct for passing
if (condition) foo(std::move(polling_func));
else foo(std::move(some_other_func));
// other things happen
poller->DoSomethingElse(); // this is why I cannot move poller completely inside the lamda
return;
}

稍后,polling_funcfoo 中被调用。该程序可以正确编译和运行。但是,我对通过引用在 lamda 中捕获 unique_ptr 感到非常厌恶。这是如何在幕后工作的,我应该这样做吗?

C++17GCC 9 结合使用

最佳答案

However I am feeling really icky about capturing the unique_ptr in lamda by reference.

只要您确保捕获的对象在 lambda 的生命周期之后仍然存在,这就没有问题。

这适用于通过 lambda 引用捕获的任何对象。

关于c++ - 在 lambda 中通过引用捕获 unique_ptr 如何正常工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58849735/

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