当前位置 : 主页 > 编程语言 > delphi >

delphi – 接口和属性可见性

来源:互联网 收集:自由互联 发布时间:2021-06-23
我有一个简单的界面 ISomeProperties = interface ['{3AD52E4E-5190-4ABE-8AFC-062295E3A352}'] function GetPort: integer; procedure SetPort(const Port: integer); end; GetFunction和SetFunction在代码complection中可见.但在我添加这
我有一个简单的界面

ISomeProperties = interface
  ['{3AD52E4E-5190-4ABE-8AFC-062295E3A352}']
    function GetPort: integer;
    procedure SetPort(const Port: integer);
  end;

GetFunction和SetFunction在代码complection中可见.但在我添加这样的属性之后

ISomeProperties = interface
  ['{3AD52E4E-5190-4ABE-8AFC-062295E3A352}']
    function GetPort: integer;
    procedure SetPort(const Port: integer);
    property Port: integer read GetPort write SetPort;
  end;

GetPort和SetPort方法仅消失属性端口可见 – 很棒.

现在我实现一个接口

TSomeProperties = class(TInterfacedObject, ISomeProperties)
  private
    function GetPort: integer;
    procedure SetPort(const Port: integer);
  end;

但是从实现接口的类中看不到属性Port!这是一种理想的行为还是我做错了什么?

该类不是界面.接口上的属性仅仅是语法糖,暴露了Delphi的方法GetPort和SetPort.

这个属性实际上并不是必须或可以实现的东西(只有访问器方法),所以它在实现类中是不可见的,除非你在那里定义一个属性.您可以实现的唯一方法是方法.

FWIW,定义属性时方法不会“消失”.你仍然可以打电话给他们.界面的所有成员具有相同的可见性.

网友评论