c++promise的使用,给一份代码
时间: 2023-12-29 12:02:47 浏览: 68
好的,这是一个使用C++11标准的promise的简单示例代码:
```c++
#include <iostream>
#include <thread>
#include <future>
void print_result(std::future<int>& future_obj)
{
int result = future_obj.get();
std::cout << "Result: " << result << std::endl;
}
int main()
{
// 创建一个promise对象
std::promise<int> promise_obj;
// 获取与promise对象关联的future对象
std::future<int> future_obj = promise_obj.get_future();
// 创建一个线程,执行一个函数来设置promise对象的值
std::thread thread_obj([](std::promise<int>& promise_obj){
promise_obj.set_value(42);
}, std::ref(promise_obj));
// 等待线程执行完成
thread_obj.join();
// 打印结果
print_result(future_obj);
return 0;
}
```
该代码创建了一个promise对象,并获取了与其关联的future对象。然后它创建了一个线程来设置promise对象的值。最后打印结果。
阅读全文