C++怎么保证某个代码段的执行必须一次性执行完
1个回答
展开全部
#include
#include
using namespace std;
int i=0;
VOID CALLBACK TimerProc(HWND, UINT, UINT, DWORD)
{
cout<<i++<<endl; //此行可改为你每秒要调用的函数
}
int main(int argc, char** argv)
{
MSG msg;
SetTimer(NULL,001,1000,TimerProc);
while(GetMessage(&msg,NULL,0,0))
{
DispatchMessage(&msg);
}
return 0;
}
#include
using namespace std;
int i=0;
VOID CALLBACK TimerProc(HWND, UINT, UINT, DWORD)
{
cout<<i++<<endl; //此行可改为你每秒要调用的函数
}
int main(int argc, char** argv)
{
MSG msg;
SetTimer(NULL,001,1000,TimerProc);
while(GetMessage(&msg,NULL,0,0))
{
DispatchMessage(&msg);
}
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询