C++11 线程 std::thread::joinable

std::thread::joinable

Checks if the std::thread object identifies an active thread of execution. Specifically, returns true if get_id() != std::thread::id(). So a default constructed thread is not joinable.

A thread that has finished executing code, but has not yet been joined is still considered an active thread of execution and is therefore joinable.

检查std :: thread对象是否标识活动的执行线程。 具体来说,如果get_id()!= std :: thread :: id()返回true。 因此,默认构造的线程不可连接。

已经完成执行代码但尚未加入的线程仍被视为执行中的活动线程,因此可以加入。

// threadTest.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <iostream>
#include <thread>
#include <string>
#include <chrono>
#include <mutex>
using namespace std;

void foo()
{
	std::this_thread::sleep_for(std::chrono::seconds(1));
}

int main()
{
	std::thread t;
	std::cout << "before starting,joinable: " << std::boolalpha << t.joinable() << "\n";
	
	t = std::thread(foo);
	std::cout << "after starting, joinable: "  << t.joinable() << "\n";
	
	t.join();
	std::cout << "after joining, joinable: " << t.joinable() << "\n";
    return 0;
}

运行结果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值