摘要: #include <windows.h>#include <process.h> /* _beginthread, _endthread */#include <iostream>#include <fstream>#include <string>using namespace std;ofstream out("out.txt");void ThreadFunc1(PVOID param){ while(1) { char *p; p=(char *) param; Sleep(10); out<< 阅读全文
posted @ 2012-04-27 15:41 Dsp Tian 阅读(1485) 评论(0) 推荐(0)