⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 delegate.dpr

📁 Delphi7从入门到精通及附书源码 Delphi7从入门到精通及附书源码
💻 DPR
字号:
program Delegate;

{$APPTYPE CONSOLE}

uses
  Borland.Delphi.SysUtils,
  System.Threading;

type
  TMyClass = class
  public
    procedure myMethod;
  end;

var
	threadDelegate: System.Threading.ThreadStart;
  aThread: System.Threading.Thread;
	tmc: TMyClass;

{ TMyClass }

procedure TMyClass.myMethod;
begin
  // some code goes here
  WriteLn ('Executing event handler');
end;

begin
	tmc := TMyClass.Create;
	threadDelegate := @tmc.myMethod;
  aThread := Thread.Create (threadDelegate);
  aThread.Start;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -