C++11多線程------std::async

std::async可以認爲是封裝了一個std::promise,該函數返回一個std::future,用於獲取其他線程的數據。 一般有兩種模式: std::lanch::async:最常用的異步模式,每次都要執行一遍 std::lanch::defer:只在第一次調用的時候執行,之後再調用返回之前的調用結果。 給出代碼示例: #include <iostream> #include <threa
相關文章
相關標籤/搜索