随笔分类 -  C++语言

摘要:#include #include DWORD WINAPI Fun1Proc( LPVOID lpParameter );DWORD WINAPI Fun2Proc( LPVOID lpParameter );int index=0;int tickets=100;HANDLE hMutex;/... 阅读全文
posted @ 2014-04-19 20:35 Blue-Dream 阅读(167) 评论(0) 推荐(0)
摘要:#include using namespace std;class people{public:int a;int b; people():a(0),b(0){};people(int x,int y):a(x),b(y){}; people& operator+=(const people&)... 阅读全文
posted @ 2014-04-19 14:17 Blue-Dream 阅读(164) 评论(0) 推荐(0)