创建线程时将x的地址传到线程一中、CreateThread(NULL,0,Fun1Proc,&x,0, NULL);DWORD WINAPI Fun1Proc(LPVOID lpX// thread data){cout<<"hello i am function 1"<Sleep(10);*lpX= 4 ; // 改变X的值return 0;}