在C++中,then
通常與異步編程和std::future
或者std::experimental::future
(取決于你的編譯器和C++版本)一起使用。then
方法允許你在一個異步操作完成后執(zhí)行另一個操作,而不需要顯式地等待第一個操作完成。
以下是一個使用std::future
和then
的示例:
#include<iostream>
#include <future>
#include<chrono>
#include<thread>
// 模擬一個耗時的異步操作
std::future<int> async_operation() {
return std::async(std::launch::async, []() {
std::this_thread::sleep_for(std::chrono::seconds(2));
return 42;
});
}
// 在異步操作完成后執(zhí)行的函數(shù)
void handle_result(std::future<int> result) {
std::cout << "Result: "<< result.get()<< std::endl;
}
int main() {
// 開始異步操作
std::future<int> result = async_operation();
// 在異步操作完成后處理結(jié)果
std::future<void> handled_result = result.then([](std::future<int> r) {
handle_result(r);
});
// 等待處理結(jié)果的操作完成
handled_result.wait();
return 0;
}
請注意,上面的示例可能無法編譯,因為std::future
沒有then
方法。為了使用then
,你可能需要使用std::experimental::future
或者使用其他庫,如boost.fiber
或cpp-taskflow
。
以下是一個使用boost.fiber
庫的示例:
#include<iostream>
#include<boost/fiber/future.hpp>
#include<boost/fiber/operations.hpp>
#include<chrono>
#include<thread>
// 模擬一個耗時的異步操作
boost::fibers::future<int> async_operation() {
return boost::fibers::async([]() {
std::this_thread::sleep_for(std::chrono::seconds(2));
return 42;
});
}
// 在異步操作完成后執(zhí)行的函數(shù)
void handle_result(boost::fibers::future<int> result) {
std::cout << "Result: "<< result.get()<< std::endl;
}
int main() {
// 開始異步操作
boost::fibers::future<int> result = async_operation();
// 在異步操作完成后處理結(jié)果
boost::fibers::future<void> handled_result = result.then([](boost::fibers::future<int> r) {
handle_result(r);
});
// 等待處理結(jié)果的操作完成
handled_result.wait();
return 0;
}
在這個示例中,我們使用了boost.fiber
庫來實現(xiàn)類似于then
的功能。請確保已經(jīng)安裝了boost.fiber
庫并正確配置了項目。