2

在from cppreference的这个描述的例子中packaged_task,出现了一个名为的类task。它是什么?

#include <iostream>
#include <future>
#include <thread>

int main()
{
    std::packaged_task<int()> task([](){return 7;}); // wrap the function
    std::future<int> result = task.get_future();  // get a future
    std::thread(std::move(task)).detach(); // launch on a thread
    std::cout << "Waiting...";
    result.wait();
    std::cout << "Done!\nResult is " << result.get() << '\n';
}
4

1 回答 1

4

task是一个类型的对象std::packaged_task<int()>。它是在第一行创建的。

于 2012-08-31T19:00:11.700 回答