首页 > 代码库 > 常量的 访问限制
常量的 访问限制
unit Unit5;interfaceuses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;type TForm5 = class(TForm) Button1: TButton; Memo1: TMemo; procedure Button1Click(Sender: TObject); procedure FormCreate(Sender: TObject); private { Private declarations } public { Public declarations } end;TBoy = class const abc = ‘boy‘;end;TGirl = class const abc = ‘girl‘;end;const abc = ‘真全局‘;var Form5: TForm5;implementation{$R *.dfm}procedure TForm5.Button1Click(Sender: TObject);begin Memo1.Lines.Add(abc); Memo1.Lines.Add(TBoy.abc); //类常量 是有 访问限制的 Memo1.Lines.Add(TGirl.abc)end;procedure TForm5.FormCreate(Sender: TObject);begin ReportMemoryLeaksOnShutdown := True;end;end.
常量的 访问限制
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。