zoukankan      html  css  js  c++  java
  • Delphi 实现检测线程类TThread是否结束

    unit Unit1;
    
    interface
    
    uses
      Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
      Dialogs, StdCtrls, ExtCtrls;
    
    type
    
      TMY = class(TThread)
      public                                                                              ThreadEnd:boolean;    
        constructor create(); overload;
        destructor Destroy(); overload;
        procedure execute; override;
      end;
    
      TForm1 = class(TForm)
        Button1: TButton;
        Panel1: TPanel;
        Button2: TButton;
        Panel2: TPanel;
        procedure Button1Click(Sender: TObject);
        procedure Button2Click(Sender: TObject);
      private
        { Private declarations }
        My: TMY;
      public
        { Public declarations }
      end;
    
    var
      Form1: TForm1;
    
    implementation
    
    {$R *.dfm}
    
    constructor TMY.create();
    begin                                                                            
      ThreadEnd :=False;    
     FreeOnTerminate := True; 
    inherited Create(False);
    end;
    destructor TMY.Destroy();
    begin 
    inherited Destroy;
    end;
    procedure TMY.execute;
    var i: Integer;
    begin 
    for i := 1 to 5000 do 
     begin 
      Sleep(1); 
      Form1.Panel1.Caption := IntToStr(i); end;
      ThreadEnd :=True;    
    end;
    procedure TForm1.Button1Click(Sender: TObject);
    begin 
      My := TMY.create;// 执行线程
    end;
    procedure TForm1.Button2Click(Sender: TObject);
    var I:Cardinal; 
    Isquit:Boolean;
    begin Isquit:=GetExitCodeThread(My.handle,i) ;//检查线程是否结束 
    if Isquit then Button2.Caption:='True' else Button2.Caption:='False';
     // My.ThreadEnd=True 也可以确定线程结束。
    end;
    end.
  • 相关阅读:
    HTTPS证书申请相关笔记
    180508
    如何通过 AAR 形式集成 leakcanary-android 服务
    Mysql命令大全
    Python3.x和Python2.x的区别 (转)
    Python学习笔记(二)
    for循环处理列表的显示
    Python学习笔记
    python环境搭建
    Linux下JDK环境的配置
  • 原文地址:https://www.cnblogs.com/chenmfly/p/4804129.html
Copyright © 2011-2022 走看看