国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

對于C++鎖的封裝及使用

2019-11-14 09:24:10
字體:
來源:轉載
供稿:網友
說明:文件名的GS前綴不代表任何含義      這里的鎖類暫時只支持windows平臺。GSMutex.h
#PRagma once#include <windows.h>#include <WinBase.h>class GSMutex{public:	GSMutex(void);	~GSMutex(void);	void	Lock();			//加鎖	void	Unlock();		//解鎖	bool	TryLock();		//true獲取鎖成功,false失敗private:	CRITICAL_SECTION m_hOS;};class GSAutoMutex{public:	GSAutoMutex(GSMutex& mutex);	~GSAutoMutex(void);private :	GSMutex& m_mutex;};GSMutex.cpp
#include "StdAfx.h"#include "GSMutex.h"GSMutex::GSMutex(void){	InitializeCriticalSection(&m_hOS);	}GSMutex::~GSMutex(void){	DeleteCriticalSection(&m_hOS);}void GSMutex::Lock(){	EnterCriticalSection(&m_hOS);}void GSMutex::Unlock(){	LeaveCriticalSection(&m_hOS);}bool GSMutex::TryLock(){	if (!TryEnterCriticalSection(&m_hOS))	{		return false;	}	return true;}GSAutoMutex::GSAutoMutex(GSMutex& mutex):m_mutex(mutex){	m_mutex.Lock();}GSAutoMutex::~GSAutoMutex(void){	m_mutex.Unlock();}LockTest.cpp
// LockTest.cpp : 定義控制臺應用程序的入口點。//#include "stdafx.h"#include <windows.h>#include <WinBase.h>#include <process.h>#include "GSMutex.h"GSMutex cs;unsigned int WINAPI ThreadFuncA(LPVOID lp){	GSAutoMutex csAuto(cs);	Sleep(3000);	printf("This is threadA/n");	return 0;}unsigned int WINAPI ThreadFuncB(LPVOID lp){	GSAutoMutex csAuto(cs);	printf("This is threadB/n");	return   0;}int _tmain(int argc, _TCHAR* argv[]){	HANDLE hThreadHandleArry[2];	memset(hThreadHandleArry, 0, sizeof(HANDLE)*2);	hThreadHandleArry[0] = (HANDLE)_beginthreadex(NULL, 0, ThreadFuncA, NULL, 0, 0);	hThreadHandleArry[1] = (HANDLE)_beginthreadex(NULL, 0, ThreadFuncB, NULL, 0, 0);		WaitForMultipleObjects(2, hThreadHandleArry, TRUE, INFINITE); 	for (int i = 0; i < 2; i++)	{		if (hThreadHandleArry[i] != NULL)		{			//關閉線程句柄,不會導致線程關閉			CloseHandle(hThreadHandleArry[i]);			hThreadHandleArry[i] = NULL;		}	}	system("pause");	return 0;}參考文章:http://blog.csdn.net/feixiaoxing/article/details/7017727
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 广丰县| 遂溪县| 锦州市| 邳州市| 麟游县| 博客| 无锡市| 炎陵县| 蛟河市| 营山县| 雷州市| 武城县| 民县| 平果县| 广丰县| 尚义县| 文成县| 措美县| 梓潼县| 东乌珠穆沁旗| 大安市| 邢台市| 舞钢市| 永新县| 洱源县| 富裕县| 水城县| 额尔古纳市| 杭锦后旗| 江西省| 浙江省| 万年县| 太谷县| 湟源县| 澄迈县| 开阳县| 库车县| 古交市| 乌兰察布市| 柳州市| 酒泉市|