在协程lambda(C++)中捕获“this”是否安全?
我一直在使用C++20协程,我偶然发现了thislambda捕获的生命周期不会延长到协程的整个生命周期的问题。
我想知道什么是安全捕获的,因为我必须将所有捕获复制到如下所示的新对象中:
[a1=object]() -> task<void> {
// need to copy into a new object to safely reference for the lifetime of the coroutine
auto object = a1;
co_await something;
// ...
当我在程序中显式捕获this
时:
[this]() -> {
co_await something;
this->....
我能够在挂起后引用this
,没有问题。
然而,在阅读标准时,我发现了以下内容:
An entity is captured by reference if it is implicitly or explicitly captured but not captured by copy. It is
unspecified whether additional unnamed non-static data members are declared in the closure type for entities
captured by reference.
假设它是否将指针创建为属性是未指定的,这是否意味着我只是幸运?或者,this
捕获有什么不同?
解决方案
程序员应该忽略标准中的这句话:它只允许实现分配比带有引用捕获的lambda对象所需的内存更少的内存(特别是在调用运算符是内联的情况下)。
相关文章