S
sunjunfeng3
Unregistered / Unconfirmed
GUEST, unregistred user!
定义了一接口
type
ICore = interface
function GetConfigInfo: EntityConfig;
procedure SetConfigInfo(vConfig:EntityConfig) ;
Property ConfigInfo:EntityConfig read GetConfigInfo write SetConfigInfo ;
end;
可是发现太长了,有没有办法不把属性调用 的方法定义出来,只定义属性如
Property ConfigInfo:EntityConfig
这是这样是不允许的
type
ICore = interface
function GetConfigInfo: EntityConfig;
procedure SetConfigInfo(vConfig:EntityConfig) ;
Property ConfigInfo:EntityConfig read GetConfigInfo write SetConfigInfo ;
end;
可是发现太长了,有没有办法不把属性调用 的方法定义出来,只定义属性如
Property ConfigInfo:EntityConfig
这是这样是不允许的