![]() |
Interface Problem mit TControl
Hi,
ich habe ein Interface:
Delphi-Quellcode:
Und Klassen die z. B. so aussehen:
type
IChangeable = interface(IInterface)['{BAC01552-BB67-488E-B33C-16CFF2BA2F5B}'] function isChanged: Boolean; procedure Change; end;
Delphi-Quellcode:
Sie sind alle mittelbare Nachfahren von TControl. Nun habe ich eine Variable:
TEditorFrame = class(TSynEdit, IFileFrame, IChangeable)
Delphi-Quellcode:
Da sind irgendwelche TControl-Nachfahren drauf. Ob sie dieses Interface implementieren weiß ich nicht.
FFrame: TControl;
Nun habe ich es so versucht zu prüfen:
Delphi-Quellcode:
Der Compiler bringt mir aber folgende Felhermeldungen:
if (FFrame is IChangeable) then
if IChangeable(FFrame).isChanged then ... Zitat:
![]() Oder hab ich nen Denkfehler in meiner Prüfung drin? Gruß Felix |
Re: Interface Problem mit TControl
Du musst die Supports()-Funktion benützen:
Delphi-Quellcode:
var
ic : IChangeable; begin if Supports(FFrame, IChangeable, ic) then if ic.isChanged then |
Re: Interface Problem mit TControl
(FFrame as IChangeable) könnte eventuell auch gehn ... zumindestens muß hier das Interface gesucht werden (ein einfacher TypeCast geht da nicht), da die Interfacevariable sozusagen auf das Interface zeigen muß und nicht auf das Objekt.
|
Re: Interface Problem mit TControl
as löst allerdings eine Exception aus, wenn das Interface nicht implementiert ist. Das könnte eventuell unerwünscht sein.
Gruß, Sven |
Re: Interface Problem mit TControl
Hi,
danke. Ich dächte es ginge mit is wie auch bei Klassen. Scheint eine FPC Eigenart zu sein? As wollte ich nicht nehmen weil ich die Exception möglichst schon vermeiden wollte. Supports klingt gut. :-) Und compiliert auch. Gruß Felix |
Re: Interface Problem mit TControl
Wieso, es ist doch implementiert? :mrgreen: (zumindestens wurde es ja vorher geprüft)
Delphi-Quellcode:
if (FFrame is IChangeable) then
if (FFrame as IChangeable).isChanged then Supports wäre praktisch auch nur ein IS und ein AS in Einem :angel: |
Re: Interface Problem mit TControl
Hi,
nein, der Compiler akzeptiert ja schon das is nicht. Gruß Felix |
Re: Interface Problem mit TControl
Ich weis nicht, wie FPC das macht, aber in Delphi gibt es mit der Mischung von Objekten und Interfaces große Probleme (auch wenn man supports anwendet).
|
Re: Interface Problem mit TControl
Zitat:
aber das AS ging zumindestens :stupid: (in Delphi) |
Re: Interface Problem mit TControl
Zitat:
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 09:14 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz