Якщо ви бажаєте використовувати C ++ 11 std::async
і std::future
для запуску своїх завдань, тоді ви можете скористатися wait_for
функцією, std::future
щоб перевірити, чи потік все ще працює акуратно, як це:
#include <future>
#include <thread>
#include <chrono>
#include <iostream>
int main() {
using namespace std::chrono_literals;
auto future = std::async(std::launch::async, [] {
std::this_thread::sleep_for(3s);
return 8;
});
auto status = future.wait_for(0ms);
if (status == std::future_status::ready) {
std::cout << "Thread finished" << std::endl;
} else {
std::cout << "Thread still running" << std::endl;
}
auto result = future.get();
}
Якщо вам потрібно використовувати, std::thread
тоді ви можете використовувати, std::promise
щоб отримати майбутній об'єкт:
#include <future>
#include <thread>
#include <chrono>
#include <iostream>
int main() {
using namespace std::chrono_literals;
std::promise<bool> p;
auto future = p.get_future();
std::thread t([&p] {
std::this_thread::sleep_for(3s);
p.set_value(true);
});
auto status = future.wait_for(0ms);
if (status == std::future_status::ready) {
std::cout << "Thread finished" << std::endl;
} else {
std::cout << "Thread still running" << std::endl;
}
t.join();
}
Обидва ці приклади виведуть:
Thread still running
Звичайно, це пов’язано з тим, що статус потоку перевіряється перед завершенням завдання.
Але знову ж таки, може бути простіше просто зробити це, як вже згадували інші:
#include <thread>
#include <atomic>
#include <chrono>
#include <iostream>
int main() {
using namespace std::chrono_literals;
std::atomic<bool> done(false);
std::thread t([&done] {
std::this_thread::sleep_for(3s);
done = true;
});
if (done) {
std::cout << "Thread finished" << std::endl;
} else {
std::cout << "Thread still running" << std::endl;
}
t.join();
}
Редагувати:
Існує також std::packaged_task
для використання з std::thread
більш чистим розчином, ніж використання std::promise
:
#include <future>
#include <thread>
#include <chrono>
#include <iostream>
int main() {
using namespace std::chrono_literals;
std::packaged_task<void()> task([] {
std::this_thread::sleep_for(3s);
});
auto future = task.get_future();
std::thread t(std::move(task));
auto status = future.wait_for(0ms);
if (status == std::future_status::ready) {
}
t.join();
}
wait()
це, і якщо так, якщо ви ще цього не зробилиwait()
, він повинен працювати за визначенням. Але ці міркування можуть бути неточними.