摘要:
#include "stdafx.h"#includeusing namespace std;#include #include #include int a=1;int b=1;unsigned int __stdcall thread_fun1(void *param){ return 0;}DWORD WINAPI fun2(LPVOID lpParamter){ a=a--; return NULL;}int main(int argc, char* argv[]){ HANDLE hThread = (HANDLE)_beginthre... 阅读全文