[示例] 访问类的私有属性
2018-06-17 18:57:42来源:未知 阅读 ()
如何访问类的私有属性?
下面以 TPathData 为例,它有一个私有属性 PathData,储存了每一个曲线点,但一般无法修改它,需要利用下面方法,才能访问修改(若有更好的方法,歡迎分享):
一、利用 RTTI 取得类私有属性(建议使用此方法):
type TPathDataHelper = class helper for TPathData public function PathData: TList<TPathPoint>; end; function TPathDataHelper.PathData: TList<TPathPoint>; var Context1: TRttiContext; Type1: TRttiType; Field1: TRttiField; begin Context1 := TRttiContext.Create; Type1 := Context1.GetType(TPathData); Field1 := Type1.GetField('FPathData'); if Assigned(Field1) then Result := Field1.GetValue(Self).AsObject as TList<TPathPoint> else Result := nil; end;
参考:http://blog.qdac.cc/?p=2541 (VKHelper,感谢 swish)
二、利用仿类将私有属性改成公有(仿类的成员必需与原类成员位置及顺序相同,因此当版本不同且成员不同时,必需跟着修改):
type
TPathDataHack = class(TInterfacedPersistent)
public
FOnChanged: TNotifyEvent;
FStyleResource: TObject;
FStyleLookup: string;
FStartPoint: TPointF;
FPathData: TList<TPathPoint>;
end;
TPathDataHelper = class helper for TPathData
public
function PathData: TList<TPathPoint>;
end;
function TPathDataHelper.PathData: TList<TPathPoint>;
begin
Result := TPathDataHack(Self).FPathData;
end;
参考:http://stackoverflow.com/questions/37351215/how-to-access-a-private-field-from-a-class-helper-in-delphi-10-1-berlin
三、直接使用 with Self do (此法最简单):(2017/09/04)
type
TPathDataHelper = class helper for TPathData
public
procedure SetPoint(const AIndex: Integer; const PathPoint: TPathPoint);
end;
procedure TPathDataHelper.SetPoint(const AIndex: Integer; const PathPoint: TPathPoint);
begin
with Self do // 必需使用 with Self do
FPathData[AIndex] := PathPoint;
end;
(感谢 [深圳]cjc 提供)
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- .NET中的访问修饰符 2018-06-21
- XPath使用示例 2018-06-21
- 微信二维码名片生成示例 2018-06-17
- SandDock 应用示例 2018-06-17
- asp.net 文件上传示例整理 2018-06-17
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash