程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> 多線程編程(5)-從CreateThread說起[續三](2)

多線程編程(5)-從CreateThread說起[續三](2)

編輯:Delphi

代碼文件:

unit Unit1;
interface
uses
 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
 Dialogs, StdCtrls;
type
 TForm1 = class(TForm)
  Button1: TButton;
  Button2: TButton;
  procedure Button1Click(Sender: TObject);
  procedure Button2Click(Sender: TObject);
  private
   procedure FormProc; {准備給線程使用的方法}
 end;
var
 Form1: TForm1;
implementation
{$R *.dfm}
var
 hThread: THandle;
{線程入口函數}
function MyThreadFun(p: Pointer): DWord; stdcall;
begin
 Form1.FormProc; {調用 TForm1 類的方法}
 Result := 99;  {這個返回值將成為線程的退出代碼, 99 是我隨意給的數字}
end;
{TForm1 的方法, 本例中是給線程的入口函數調用的}
procedure TForm1.FormProc;
var
 i: Integer;
begin
 for i := 0 to 200000 do
 begin
  with Form1.Canvas do begin
   Lock;
   TextOut(10, 10, IntToStr(i));
   Unlock;
  end;
 end;
end;
{建立並執行線程}
procedure TForm1.Button1Click(Sender: TObject);
var
 ID: DWord;
begin
 hThread := CreateThread(nil, 0, @MyThreadFun, nil, 0, ID);
end;
{獲取線程的退出代碼, 並判斷線程是否退出}
procedure TForm1.Button2Click(Sender: TObject);
var
 ExitCode: DWord;
begin
 GetExitCodeThread(hThread, ExitCode);
 if hThread = 0 then
 begin
  Text := '線程還未啟動';
  Exit;
 end;
 if ExitCode = STILL_ACTIVE then
  Text := Format('線程退出代碼是: %d, 表示線程還未退出', [ExitCode])
 else
  Text := Format('線程已退出, 退出代碼是: %d', [ExitCode]);
end;
end.

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved