C++多线程(一)

本文介绍了四种常见的多线程编程实现方式:直接启动函数、lambda表达式、类重写operator()以及类成员函数指针。通过实例展示了如何使用C++11的<thread>库创建并同步线程,适合初学者理解并发编程基础。
摘要由CSDN通过智能技术生成

直接总结多线程写法:

1.直接启动函数:

#include <iostream>
#include <windows.h>
#include <thread>

void fun1(){
	for(int i = 0; i < 3; i++){
		std::cout << "fun1" << std::endl;
		Sleep(500);
	}
}

void fun2(){
	for(int i = 0; i < 3; i++){
		std::cout << "fun2" << std::endl;
		Sleep(500);
	}
}
int main(){
	std::thread mythread1(fun1);
	std::thread mythread2(fun2);
	mythread1.join();
	mythread2.join();
	return 0;
}

运行结果:
在这里插入图片描述

2.lambd表达式:

#include <iostream>
#include <windows.h>
#include <thread>

void fun1(){
	for(int i = 0; i < 3; i++){
		std::cout << "fun1" << std::endl;
		Sleep(500);
	}
}
int main(){
	
	std::thread mythread1([](){
		for(int i = 0; i < 3; i++){
			std::cout << "lambd()" << std::endl;
			Sleep(500);
		}
	});
	fun1();
	mythread1.join();
	return 0;
}

运行结果:

在这里插入图片描述

3.类启动, 重写operator():

#include <iostream>
#include <windows.h>
#include <thread>

void fun1(){
	for(int i = 0; i < 3; i++){
		std::cout << "fun1" << std::endl;
		Sleep(500);
	}
}

class A{
public:
	void operator()(){
		for(int i = 0; i < 3; i++){
			std::cout << "operator()" << std::endl;
			Sleep(500);
		}
	}
};

int main(){
	A a;
	std::thread mythread1(a);
	fun1();
	mythread1.join();
	return 0;
}

运行结果:
在这里插入图片描述
4.类成员函数指针做线程函数:

#include <iostream>
#include <windows.h>
#include <thread>

void fun1(){
	for(int i = 0; i < 3; i++){
		std::cout << "fun1" << std::endl;
		Sleep(500);
	}
}

class B{
public:
	void thread_fun(int num){
		for(int i = 0; i < num; i++){
			std::cout << "thread_fun()" << std::endl;
			Sleep(500);
		}
	}
};

int main(){
	B b;
	std::thread mythread1(&B::thread_fun,&b, 4);
	fun1();
	mythread1.join();
	return 0;
}

运行结果:
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值