首页 > 后端开发 > C++ > 如何检查'std::thread”是否仍在 C 中运行?

如何检查'std::thread”是否仍在 C 中运行?

Barbara Streisand
发布: 2024-12-01 06:10:13
原创
736 人浏览过

How Can I Check if a `std::thread` is Still Running in C  ?

检查活动的 std::Thread

在多线程领域,了解 std::thread 是否仍在执行仍然至关重要。本文深入探讨了与平台无关的线程状态验证的实用技术。

使用 std::async 和 std::future

利用 std::async 和 std: :future 提供了一种监控线程状态的无缝方法。在 future 对象上使用 wait_for() 可以立即了解线程的状态:

#include <future>
#include <thread>
#include <chrono>
#include <iostream>

int main() {
    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;
    }
}
登录后复制

使用 std::promise 和 std::future

另一种解决方案涉及利用 std::promise 和std::future:

#include <future>
#include <thread>
#include <chrono>
#include <iostream>

int main() {
    std::promise<bool> p;
    auto future = p.get_future();

    std::thread t([&amp;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();
}
登录后复制

使用 std::atomic

更简单的方法使用 std::atomic:

#include <thread>
#include <atomic>
#include <chrono>
#include <iostream>

int main() {
    std::atomic<bool> done(false);

    std::thread t([&amp;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::packaged_task 提供了更精细的解决方案:

#include <future>
#include <thread>
#include <chrono>
#include <iostream>

int main() {
    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();
}
登录后复制

以上是如何检查'std::thread”是否仍在 C 中运行?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板