建立乙個執行緒的api函式叫做createthread
hthread=createthread(&security_attributee,dwstacksize,threadproc,pparam,dwflags,&idthread);
大部分的windows程式設計師都會傾向於使用c的執行時庫函式_beginthread()(在標頭檔案process.h中)
hthread=_beginthread(threadproc,uistacksize,pparam);
下面看乙個程式(來自windows程式設計第五版,可以跟前面部落格peekmessage函式比較一下)
#include#includelresult callback windowproc(
hwnd hwnd, // handle to window
uint umsg, // message identifier
wparam wparam, // first message parameter
lparam lparam // second message parameter
);hwnd hwnd;
int cxclient,cyclient;
int winapi winmain(
hinstance hinstance, // handle to current instance
hinstance hprevinstance, // handle to previous instance
lpstr lpcmdline, // command line
int ncmdshow // show state
) hwnd=createwindow(
text("this is title"), // window name
cw_usedefault, // horizontal position of window
cw_usedefault, // vertical position of window
cw_usedefault, // window width
cw_usedefault, // window height
null, // handle to parent or owner window
null, // menu handle or child identifier
null // window-creation data
);showwindow(hwnd,ncmdshow);
updatewindow(hwnd);
while(getmessage(&msg,null,0,0))
return msg.wparam;
}void thread(pvoid pvoid)
} //_endthread();
}lresult callback windowproc(
hwnd hwnd, // handle to window
uint umsg, // message identifier
wparam wparam, // first message parameter
lparam lparam // second message parameter
)return defwindowproc(hwnd,umsg,wparam,lparam);
}
效果跟peekmessage函式是一樣的,隨機產生矩形 Shell 實現多執行緒(多工)
bin bash all num 10 a date h m s for num in seq1 do done b date h m s echo e starttime t a echo e endtime t b 在命令的末尾加 符號,則命令將在後台執行,這樣後面的命令不需要等待該命令執行完再...
第20章 多工和多執行緒
1 多工 指操作系系統能夠並行執行多個程式的能力。多執行緒 指乙個程式在自身內部也有執行多工的能力。2 乙個程式可以在執行的長時間任何中滲入peekmessage呼叫,這樣,我們既可以再沒有新訊息的時候保持長時間任務的執行,又可以對新的訊息作出及時的反應。4 主線程負責視窗所有的視窗,以及負責執行視...
多工 執行緒
建立函式 建立執行緒物件,並制定函式 開啟執行緒 import threading import time defwork1 1.定義函式 for i in range 5 print 正在掃地 i time.sleep 1 defmain 測試執行緒的基本使用 2.建立執行緒物件 t1 threa...