Ich wollte nur zeigen was bisher möglich ist und wie der Compiler arbeiten müsste, um Mehrfachvererbung zu ermöglichen. Natürlich ist intern eine Sonderbehandlung durch den Compiler notwendig. Im Detail stelle ich mir das ungefähr so vor:
Delphi-Quellcode:
type
MyInterface1 = interface
procedure My1;
procedure MyX;
procedure MyY;
end;
MyInterface2 = interface
procedure My2;
procedure MyX;
procedure MyY(AValue: Integer);
end;
MyInterface3 = interface(MyInterface1, MyInterface2)
// Compiler-Magie -> MyInterface3 = interface()
// automatisch unsichtbar hinzugefügt ->
procedure My1; // aus MyInterface1
procedure MyX; // aus MyInterface1, MyInterface2 -> nur einmal da eindeutig
procedure MyY; overload; // aus MyInterface1, andere Parameter
procedure My2; // aus MyInterface2
procedure MyY(AValue: Integer); overload; // aus MyInterface2, andere Parameter
// vom Entwickler neu definiert ->
procedure MyZ;
end;
TMyObject = class(TInterfacedObject, MyInterface3)
// automatisch durch den Compiler hinzugefügt: MyInterface1, MyInterface2
procedure My1;
procedure MyX;
procedure MyY; overload;
procedure My2;
procedure MyY(AValue: Integer); overload;
procedure MyZ;
end;
var
v1: MyInterface1;
v2: MyInterface2;
v3: MyInterface3;
begin
v1 := v3; // Compiler erkennt Mehrfachvererbung -> v3.QueryInterface(MyInterface1, v1);
v2 := v3; // Compiler erkennt Mehrfachvererbung -> v3.QueryInterface(MyInterface2, v2);