欧美性猛交XXXX免费看蜜桃,成人网18免费韩国,亚洲国产成人精品区综合,欧美日韩一区二区三区高清不卡,亚洲综合一区二区精品久久

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費電子書(shū)等14項超值服

開(kāi)通VIP
Windows 的多線(xiàn)程程序設計初步zz
一般情況下多線(xiàn)程編程多采用MFC類(lèi)庫實(shí)現,那么如果不使用MFC 如何進(jìn)行多線(xiàn)程程序設計呢?本文將就這個(gè)問(wèn)題進(jìn)行討論:

  微軟在Windows API中提供了建立新的線(xiàn)程的函數CreateThread,它的語(yǔ)法如下:

hThread = CreateThread (&security_attributes, dwStackSize, ThreadProc,pParam, dwFlags, &idThread) ;

  第一個(gè)參數是指向SECURITY_ATTRIBUTES型態(tài)的結構的指針。在Windows 98中忽略該參數。在Windows NT中,它被設為NULL。第二個(gè)參數是用于新線(xiàn)程的初始堆棧大小,默認值為0。在任何情況下,Windows根據需要動(dòng)態(tài)延長(cháng)堆棧的大小。

  CreateThread的第三個(gè)參數是指向線(xiàn)程函數的指標。函數名稱(chēng)沒(méi)有限制,但是必須以下列形式聲明:

DWORD WINAPI ThreadProc (PVOID pParam) ;
 
  CreateThread的第四個(gè)參數為傳遞給ThreadProc的參數。這樣主線(xiàn)程和從屬線(xiàn)程就可以共享數據。

  CreateThread的第五個(gè)參數通常為0,但當建立的線(xiàn)程不馬上執行時(shí)為旗標CREATE_SUSPENDED。線(xiàn)程將暫停直到呼叫ResumeThread來(lái)恢復線(xiàn)程的執行為止。第六個(gè)參數是一個(gè)指標,指向接受執行緒ID值的變量。

  大多數Windows程序寫(xiě)作者喜歡用在PROCESS.H表頭文件中聲明的C執行時(shí)期鏈接庫函數_beginthread。它的語(yǔ)法如下:

hThread = _beginthread (ThreadProc, uiStackSize, pParam) ;

  它更簡(jiǎn)單,對于大多數應用程序很完美,這個(gè)線(xiàn)程函數的語(yǔ)法為:

void __cdecl ThreadProc (void * pParam) ;

  在建立多線(xiàn)程的Windows程序時(shí),需要在「Project Settings」對話(huà)框中做一些修改。選擇「C/C++」頁(yè)面標簽,然后在「Category」下拉式清單方塊中選擇「Code Generation」。在「Use Run-Time Library」下拉式清單方塊中,可以看到用于「Release」設定的「Single-Threaded」和用于Debug設定的「Debug Single-Threaded」。將這些分別改為「Multithreaded」和「Debug Multithreaded」。這將把編譯器旗標改為/MT,它是編譯器在編譯多線(xiàn)程的應用程序所需要的。

  第一個(gè)demo.

/*******************************************************
*
* deom1---四個(gè)線(xiàn)程同時(shí)寫(xiě)一個(gè)文件( 沒(méi)有參數 )
*
*
***********************************************************/
#include <windows.h>
#include <process.h> /* _beginthread, _endthread */
#include <iostream>
#include <fstream>
using namespace std;

ofstream out("out.txt");

void ThreadFunc1(PVOID param)
{
 while(1)
 {
  Sleep(10);
  out<<"This was draw by thread l"<<endl;
 }
}
void ThreadFunc2(PVOID param)
{
 while(1)
 {
  Sleep(10);
  out<<"This was draw by thread 2"<<endl;
 }
}
void ThreadFunc3(PVOID param)
{
 while(1)
 {
  Sleep(10);
  out<<"This was draw by thread 3"<<endl;
 }
}
void ThreadFunc4(PVOID param)
{
 while(1)
 {
  Sleep(10);
  out<<"This was draw by thread 4"<<endl;
 }
}
int main()
{
 int i=0;
 _beginthread(ThreadFunc1,0,NULL);
 _beginthread(ThreadFunc2,0,NULL);

 _beginthread(ThreadFunc3,0,NULL);
 _beginthread(ThreadFunc4,0,NULL);
 Sleep(3000);
 out<<"end";
 return 0;
}

//demo1 end-----------------------------------------------

第二個(gè)demo.
/*******************************************************
*
* deom2---四個(gè)線(xiàn)程同時(shí)寫(xiě)一個(gè)文件( 有參數 )
*
*
***********************************************************/
#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<<p<<"This was draw by thread l"<<endl;
 }
}
void ThreadFunc2(PVOID param)
{
 while(1)
 {
  Sleep(10);
  out<<"This was draw by thread 2"<<endl;
 }
}
void ThreadFunc3(PVOID param)
{
 while(1)
 {
  Sleep(10);
  out<<"This was draw by thread 3"<<endl;
 }
}
void ThreadFunc4(PVOID param)
{
 while(1)
 {
  Sleep(10);
  out<<"This was draw by thread 4"<<endl;
 }
}
int main()
{
 char *pstr=" 參數傳遞成功";

 _beginthread(ThreadFunc1,0,pstr);
 _beginthread(ThreadFunc2,0,NULL);

 _beginthread(ThreadFunc3,0,NULL);
 _beginthread(ThreadFunc4,0,NULL);
 Sleep(1000);
 out<<"end";
 return 0;
}

// demo2 end ------------------------------------------------

第三個(gè)demo( 一個(gè)win32 應用程序 )

/*******************************************************
*
* deom3--- 在屏幕上隨機畫(huà)出一系列矩形
*
*
***********************************************************/


#include <windows.h>
#include <process.h>

LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ;
HWND hwnd ;

int cxClient, cyClient ;

int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,

PSTR szCmdLine, int iCmdShow)
{
 static TCHAR szAppName[] = TEXT ("RndRctMT") ;
  MSG msg ;

WNDCLASS wndclass ;

wndclass.style = CS_HREDRAW | CS_VREDRAW ;
wndclass.lpfnWndProc = WndProc ;
wndclass.cbClsExtra = 0 ;
wndclass.cbWndExtra = 0 ;
wndclass.hInstance = hInstance ;
wndclass.hIcon = LoadIcon (NULL, IDI_APPLICATION) ;
wndclass.hCursor = LoadCursor (NULL, IDC_ARROW) ;
wndclass.hbrBackground = (HBRUSH) GetStockObject (WHITE_BRUSH) ;
wndclass.lpszMenuName = NULL ;
wndclass.lpszClassName = szAppName ;

if (!RegisterClass (&wndclass))
{
 MessageBox (NULL, TEXT ("This program requires Windows NT!"),szAppName, MB_ICONERROR) ;
 return 0 ;
}

hwnd = CreateWindow ( szAppName, TEXT ("Random Rectangles"),
  WS_OVERLAPPEDWINDOW,
  CW_USEDEFAULT, CW_USEDEFAULT,
  CW_USEDEFAULT, CW_USEDEFAULT,
  NULL, NULL, hInstance, NULL) ;
ShowWindow (hwnd, iCmdShow) ;
UpdateWindow (hwnd) ;

while (GetMessage (&msg, NULL, 0, 0))
{
 TranslateMessage (&msg) ;
 DispatchMessage (&msg) ;
}
return msg.wParam ;
}

VOID Thread (PVOID pvoid)
{
 HBRUSH hBrush ;
 HDC hdc ;
 int xLeft, xRight, yTop, yBottom, iRed, iGreen, iBlue ;

 while (TRUE)
 {
  if (cxClient != 0 || cyClient != 0)
  {
   xLeft = rand () % cxClient ;
   xRight = rand () % cxClient ;
   yTop = rand () % cyClient ;
   yBottom = rand () % cyClient ;
   iRed = rand () & 255 ;
   iGreen = rand () & 255 ;
   iBlue = rand () & 255 ;
 
   hdc = GetDC (hwnd) ;
   hBrush = CreateSolidBrush (RGB (iRed, iGreen, iBlue)) ;
   SelectObject (hdc, hBrush) ;

   Rectangle (hdc,min (xLeft, xRight), min (yTop, yBottom),
     max (xLeft, xRight), max (yTop, yBottom)) ;

   ReleaseDC (hwnd, hdc) ;
   DeleteObject (hBrush) ;
  }
 }
}

LRESULT CALLBACK WndProc ( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
 switch (message)
 {
  case WM_CREATE:
   _beginthread (Thread, 0, NULL) ;
   return 0 ;
  case WM_SIZE:
   cxClient = LOWORD (lParam) ;
   cyClient = HIWORD (lParam) ;
   return 0 ;
  case WM_DESTROY:
   PostQuitMessage (0) ;
   return 0 ;
 }
 return DefWindowProc (hwnd, message, wParam, lParam) ;
}

//demo4 end-----------------------------------------------

  參考:windows 程序設計
本站僅提供存儲服務(wù),所有內容均由用戶(hù)發(fā)布,如發(fā)現有害或侵權內容,請點(diǎn)擊舉報。
打開(kāi)APP,閱讀全文并永久保存 查看更多類(lèi)似文章
猜你喜歡
類(lèi)似文章
誰(shuí)有C語(yǔ)言編寫(xiě)的病毒源代碼?
孫鑫VC視頻教程筆記之第一課“Windows程序的內部運行原理”
windows窗口的創(chuàng )建
Windows程序基本框架
Windows消息編程原理
Win32編程基礎知識_天空總是藍色的
更多類(lèi)似文章 >>
生活服務(wù)
分享 收藏 導長(cháng)圖 關(guān)注 下載文章
綁定賬號成功
后續可登錄賬號暢享VIP特權!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服

欧美性猛交XXXX免费看蜜桃,成人网18免费韩国,亚洲国产成人精品区综合,欧美日韩一区二区三区高清不卡,亚洲综合一区二区精品久久