本文整理自网络,侵删。
unit Unit1;
interface
uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;
type TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations }
end;
THello=class public
FStr:string; public constructor Hello;
end;
var Form1: TForm1;
implementation
{$R *.dfm}
{ THello }
constructor THello.Hello;begin FStr:='Hello';
end;
procedure TForm1.Button1Click(Sender: TObject);var He:THello;begin HE:=THello.Hello; ShowMessage(He.FStr);end;
end.
相关阅读 >>
Delphixe4 版本中,已针对移动平台 引入了 arc 模型
更多相关阅读请进入《Delphi》频道 >>