![]() |
Konstruktor erstellen
Hallo,
habe folgende Frage:
Delphi-Quellcode:
Nun möchte ich wenn ein Exemplar von TClassB erstellt wird ein Aufruf von TClassB.Create(ValueA,ValueB) erstellt wird. Dh. die Werte von ValueA + ValueB im Konstruktor zuweisen.TClassA = class (TObject) private a : string; public constructor create (ValueA : string); end; TClassB = class (TClassA) private b : string; public constructor create (ValueB : string); end; |
Re: Konstruktor erstellen
Delphi-Quellcode:
TClassA = class (TObject)
private a : string; public constructor create (ValueA : string); end; TClassB = class (TClassA) private b : string; public constructor create (ValueA, ValueB : string); end; constructor TClassB.create (ValueA, ValueB : string); begin inherited Create(ValueA); ... end; |
Re: Konstruktor erstellen
Delphi-Quellcode:
TClassB = class (TClassA)
private b : string; public constructor Create(ValueA, ValueB : string); end; constructor TClassB.Create (ValueA, ValueB : string); begin inherited Create( ValueA); b := ValueB; end; |
Re: Konstruktor erstellen
Danke, ich glaube ich sollte eine Pause machen um wieder produktiv zu sein...
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:38 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