![]() |
Delphi-Version: XE3
Interface - Supports
Gestern bin ich fast verzweifelt, bis ich meinen Schreibfehler entdeckt habe...
Delphi-Quellcode:
procedure MyProc(aParam: IInterface);
var lMyThing: TMyThing; // richtig wäre natürlich IMyThing begin if Supports(aParam, IMyThing, lMyThing) then lMyThing.DoIt; end; In DoIt wurde eingesprungen, aber sofort danach gab es einen Zugriffsfehler. Wäre sicher nicht verkehrt, wenn der Compiler hier abbrechen oder wenigstens warnen würde. Vielleicht will ja mal jemand einen QC-Eintrag machen (ich bin da nicht mehr UpToDate). |
AW: Interface - Supports
Zitat:
|
AW: Interface - Supports
Der dritter Parameter ist völlig typenlos. Manche Dinge wie Supports(..) oder FreeAndNil(..) sind einfach so. Wahrscheinlich irgendwelche Altlasten von vor 25 Jahren. Ich glaube nicht dass sich daran noch etwas ändern wird.
|
AW: Interface - Supports
Zitat:
|
AW: Interface - Supports
Zitat:
![]() ![]()
Delphi-Quellcode:
function Supports<T: IInterface, guid>(const Instance: IInterface; out Intf: T): Boolean;
|
AW: Interface - Supports
Ich vermute da schlagt die automtatische Referenzzählung zu.
Du darfst hier wirklich nicht
Delphi-Quellcode:
sondern mussst (!)
var lMyThing: TMyThing; // richtig wäre natürlich IMyThing
Delphi-Quellcode:
um mit dem Interface arbeiten zu können
var lMyThing: IMyThing;
Du bekommst kein TMyThing geliefert sondern nur das Interface. Deshalb ist es vollkommen OK das es danach kracht. Der Compiler kann hier nicht so richtig warnen da er ja nur das Interface zu sehen bekommt. Evtl. hat ja dieses einen (Kauf-)Hilfstools das weiter Compilerwarnungen/Fehler ergänzt |
AW: Interface - Supports
Zitat:
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 12:41 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