gpt4 book ai didi

delphi - 让 getter 返回私有(private) var 属性的值

转载 作者:行者123 更新时间:2023-12-03 19:01:36 24 4
gpt4 key购买 nike

说我有

type
TLight = class
private
Ftimer : TTimer;
property IsAutoRotating: Boolean read Ftimer.Enabled;

显然,这不会编译,但为什么不编译以及如何解决这个问题(最好不要将该状态保存在单独的 var.

最佳答案

您的代码不会编译,因为属性 read 和 write 说明符必须引用类的字段或方法。 Ftimer.Enabled这些都不是。

实现 IsAutoRotating属性,您需要创建一个 getter 函数:

type
TLight = class
private
Ftimer : TTimer;
function GetIsAutoRotating: Boolean;
public
property IsAutoRotating: Boolean read GetIsAutoRotating;
end;

function TLight.GetIsAutoRotating : Boolean;
begin
Result := Ftimer.Enabled;
end;

关于delphi - 让 getter 返回私有(private) var 属性的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2177615/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com