gpt4 book ai didi

c++ - 在 C++ 中返回本地协程变量的地址是否合法?

转载 作者:行者123 更新时间:2023-12-04 13:26:02 25 4
gpt4 key购买 nike

如果我返回本地协程变量的地址,例如通过 promise ,它是否保证按 C++ 标准工作?考虑一个例子(基于 https://www.scs.stanford.edu/~dm/blog/c++-coroutines.html ):

#include <coroutine>
#include <iostream>

struct ReturnObject {
struct promise_type {
unsigned * value_ = nullptr;

void return_void() {}
ReturnObject get_return_object() {
return {
.h_ = std::coroutine_handle<promise_type>::from_promise(*this)
};
}
std::suspend_never initial_suspend() { return {}; }
std::suspend_never final_suspend() noexcept { return {}; }
void unhandled_exception() {}
};

std::coroutine_handle<promise_type> h_;
operator auto() const { return h_; }
};

template<typename PromiseType>
struct GetPromise {
PromiseType *p_;
bool await_ready() { return false; }
bool await_suspend(std::coroutine_handle<PromiseType> h) {
p_ = &h.promise();
return false;
}
PromiseType *await_resume() { return p_; }
};

ReturnObject counter()
{
auto pp = co_await GetPromise<ReturnObject::promise_type>{};

for (unsigned i = 0;; ++i) {
pp->value_ = &i; // is it legal?
co_await std::suspend_always{};
}
}

int main()
{
std::coroutine_handle<ReturnObject::promise_type> h = counter();
auto &promise = h.promise();
for (int i = 0; i < 5; ++i) {
std::cout << "counter: " << *promise.value_ << std::endl;
h();
}
h.destroy();
}
https://gcc.godbolt.org/z/P5PMc15qW
在实践中我看到它确实有效,但它真的合法吗?

最佳答案

是的,这是合法的。 counter的局部变量存储在一个动态分配的对象中 h拥有。
使用后释放的可能性的通常警告在那里,即 promise后悬挂 h.destroy() .

关于c++ - 在 C++ 中返回本地协程变量的地址是否合法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68390057/

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