Windows10 VS2017 C++多线程传参和等待线程结束
版权声明:本文可能为博主原创文章,若标明出处可随便转载。 https://blog.csdn.net/Jailman/article/details/85322164 #include "pch.h" #include <iostream> #include <windows.h> using namespace std; typedef struct MyData { const char* str; }MYDATA; //线程函数 DWORD WINAPI Fun(LPVOID lpParamter) { MYDATA *pmd = (MYDATA *)lpParamter; for (int i = 0; i < 10; i++) { cout << "Displaying " << pmd->str << endl; Sleep(500); } return 0; } int main() { //使用struct传递参数 MYDATA xstr; xstr.str = "你好!"; //使用GetExit...