Zitat von
sx2008:
Ist das nicht einfach nur Polymorphie?
Ich will ja sowas:
Delphi-Quellcode:
TBase = class
procedure BaseProc;
end;
TAbleitung = class(TBase)
procedure Blubb; of BaseProc; // oder so :-D
procedure Foo; of BaseProc;
end;
procedure TBase.BaseProc;
begin
ShowMessage('Base');
end;
procedure TAbleitung.Blubb;
begin
ShowMessage('Blubb');
end;
procedure TAbleitung.Foo;
begin
ShowMessage('Foo');
end;
Jetzt soll wenn man TAbleitung.Blubb; aufruft erst BaseProc aufgerufen werden und dann Blubb selbst.
Bei procedure TAbleitung.Foo das gleiche Prinzip. Erst BaseProc, dann Foo.
Michael
"Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."