C++11的并发框架:Async++
Async++是一个轻量级的C++11并发框架。其思想源于Microsoft PPL library 和 N3428 C++标准提案。
// Create a task which runs asynchronously auto my_task = async::spawn([] { return 42; }); // Do other stuff while the task is not finished while (!my_task.ready()) { // Do stuff... } // Wait for the task to complete without getting the result my_task.wait(); // Wait for the task to complete and get the result int answer = my_task.get(); // Create a task with a preset value auto my_task2 = async::make_task(42); // Print the value stored in the task std::cout << my_task2.get() << std::endl;
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!