gpt4 book ai didi

delphi - 我如何使用 "is"来检查或检查一个确切的类(不是后代)?

转载 作者:行者123 更新时间:2023-12-03 18:53:29 27 4
gpt4 key购买 nike

TBase = class(TObject)
...

TDerived = class(Tbase)
...

if myObject is TBase then ...

如果 myObject 属于 TDerived 类,我能否以某种方式对其进行编码并让它返回 false?

最佳答案

如果您需要准确的类类型检查,请使用 ClassType 方法:

type

TBase = class(TObject)
end;

TDerived = class(Tbase)
end;

procedure TForm1.Button1Click(Sender: TObject);
var
A: TBase;

begin
A:= TBase.Create;
if A.ClassType = TBase then ShowMessage('TBase'); // shown
A.Free;
A:= TDerived.Create;
if A.ClassType = TBase then ShowMessage('TBase again'); // not shown
A.Free;
end;

关于delphi - 我如何使用 "is"来检查或检查一个确切的类(不是后代)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3539773/

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