开发者社区> 问答> 正文

为什么会报错哦?关于C++锁的使用?报错

// asdasdsadasd.cpp : 定义控制台应用程序的入口点。
//


#include "stdafx.h"
#include <vector>
#include <Windows.h>
#include <iostream>


using namespace std;


vector<int>strNum;


HANDLE m_mutex;


DWORD WINAPI MyThreadProc1(LPVOID lpParameter)
{ int i=0;
while(1)
{
WaitForSingleObject(m_mutex,INFINITE);
strNum.push_back(i);
i++;
ReleaseMutex(m_mutex);
Sleep(100);
}
}


DWORD WINAPI MyThreadProc2(LPVOID lpParameter)
{
vector<int>::iterator iter;

while (1)
{
WaitForSingleObject(m_mutex,INFINITE);
if (strNum.size()>0)
{
for (iter=strNum.begin();iter!=strNum.end();iter++)
{
cout<<(iter)<<endl;
}
}
ReleaseMutex(m_mutex);
Sleep(100);
}
}


int _tmain(int argc, _TCHAR
argv[])
{


CreateThread(NULL,0,MyThreadProc1,NULL,0,NULL);
CreateThread(NULL,0,MyThreadProc2,NULL,0,NULL);


while(1)
{
WaitForSingleObject(m_mutex,INFINITE);
strNum.clear();
ReleaseMutex(m_mutex);
Sleep(100);
}
return 0;
}


展开
收起
爱吃鱼的程序员 2020-06-12 11:07:15 542 0
1 条回答
写回答
取消 提交回答
  • https://developer.aliyun.com/profile/5yerqm5bn5yqg?spm=a2c6h.12873639.0.0.6eae304abcjaIB

    CreateMutex呢?还是抽自己一个嘴巴吧,知耻而后勇

    2020-06-12 11:07:32
    赞同 展开评论 打赏
问答分类:
C++
问答标签:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
使用C++11开发PHP7扩展 立即下载
GPON Class C++ SFP O;T Transce 立即下载
GPON Class C++ SFP OLT Transce 立即下载