先看一個例子ios
#include <ppltasks.h> #include <iostream> using namespace Concurrency; using namespace std; int main() { task<int> t([]() { return 10; }); t.wait(); wcout << t.get() << endl; return 0; }