• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Delphi实现静态变量

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

C++有静态变量,static关键字描述,其实Delphi也可以做到。

以前一般采用的是const方法来实现,现在的Delphi可以用class关键字来实现。

附代码如下,两种方式具有示例。

 1 unit Unit6;
 2 
 3 interface
 4 
 5 uses
 6   Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
 7   Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
 8 
 9 type
10   TTestClass = class
11   private
12     {$J+}
13     const FTest : integer = 0;
14     {$J-}
15     class var FTest2 : integer;
16     function GetTest: integer;
17     function GetTest2: integer;
18   public
19     constructor Create;virtual;
20 
21     property Test : integer read GetTest;
22     property Test2 : integer read GetTest2;
23   end;
24 
25   TForm6 = class(TForm)
26     Button1: TButton;
27     procedure Button1Click(Sender: TObject);
28   private
29     { Private declarations }
30   public
31     { Public declarations }
32   end;
33 
34 var
35   Form6: TForm6;
36 
37 implementation
38 
39 {$R *.dfm}
40 
41 { TTestClass }
42 
43 constructor TTestClass.Create;
44 begin
45   Inc(FTest);
46   Inc(FTest2);
47 end;
48 
49 function TTestClass.GetTest: integer;
50 begin
51   Result := FTest;
52 end;
53 
54 function TTestClass.GetTest2: integer;
55 begin
56   Result := FTest2;
57 end;
58 
59 procedure TForm6.Button1Click(Sender: TObject);
60 var
61   ATest : TTestClass;
62 begin
63   ATest := TTestClass.Create;
64   Caption := IntToStr(ATest.GetTest)+':'+IntToStr(ATest.GetTest2);
65 end;
66 
67 end.

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Delphi中的关键字与保留字发布时间:2022-07-18
下一篇:
Delphi与DirectX之DelphiX(33):TDIB.SmoothRotateWrap();发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap