Thema: Delphi Methoden - "Vererbung"

Einzelnen Beitrag anzeigen

Benutzerbild von Neutral General
Neutral General

Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
 
Delphi 10.2 Tokyo Professional
 
#4

Re: Methoden - "Vererbung"

  Alt 16. Dez 2009, 17:55
Zitat von sx2008:
Glasskugel dreh...du sucht das Strategie Design Pattern.
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."
  Mit Zitat antworten Zitat