概述
C++使用内核对象互斥体(Mutex)实现线程同步锁,当两个线程共同访问一个共享资源时,Mutex可以只向一个线程授予访问权。
下面的例子模拟了售票系统,定义了两个售票线程
/// ConsoleApplication1.cpp : 定义控制台应用程序的入口点。
//
//mutex
#include "stdafx.h"
#include <stdio.h>
#include<windows.h>
#include<process.h>
void __cdecl threadProc1(void* param);
void __cdecl threadProc2(void* param);
int tickets = 100;
HANDLE hMutex = INVALID_HANDLE_VALUE;
int main()
{
hMutex = CreateMutex(NULL, FALSE, NULL);
HANDLE hThread1 =(HANDLE)_beginthread(threadProc1, 0, "A:");
HANDLE hThread2 = (HANDLE)_beginthread(threadProc2, 0, "B:");
HANDLE hThread[] = { hThread1 ,hThread2 };
WaitForMultipleObjects(2, hThread, true, INFINITE);
return 0;
}
void __cdecl threadProc1(void* param) {
char *p = (char *)param;
while (tickets > 0) {
WaitForSingleObject(hMutex, INFINITE);//等待Mutex释放
if (tickets > 0) {
printf("%s sell ticket %dn", p, tickets--);
}
ReleaseMutex(hMutex);//释放mutex
}
}
void __cdecl threadProc2(void* param) {
char *p = (char *)param;
while (tickets > 0) {
WaitForSingleObject(hMutex, INFINITE);//等待Mutex释放
if (tickets > 0) {
printf("%s sell ticket %dn", p, tickets--);
}
ReleaseMutex(hMutex);//释放mutex
}
}
最后
以上就是缓慢飞机为你收集整理的c++利用mutex(互斥量)实现多线程的全部内容,希望文章能够帮你解决c++利用mutex(互斥量)实现多线程所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复