常量的 访问限制
Posted 不能富贵难成大器皆因懒, 胸无大志庸庸碌碌只为闲。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常量的 访问限制相关的知识,希望对你有一定的参考价值。
unit Unit5; interface uses 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.
以上是关于常量的 访问限制的主要内容,如果未能解决你的问题,请参考以下文章
如何克服 `PERCENTILE_CONT` 的参数应该是常量的限制?
Flutter 报错 DioError [DioErrorType.DEFAULT]: Bad state: Insecure HTTP is not allowed by platform(代码片段