Also, da Delphi sowieso garnicht den Name der Variable in der
RTTI speichert, ist die ganze Sache eh irrelevant.
(ja, nicht als Variablen, sondern als Feld in ein Klasse ... aber neee)
Delphi-Quellcode:
Autos: TStringList; // oder oder ein String-Array oder sonstwas
Motoren: TDictionary<string,string>;
Leistung: TDictionary<string,Integer>;
Autos = [Auto1, Auto2]
Motoren = [Auto1:Motor1, Auto2:Motor2]
Leistung = [Motor1:99, Motor2:150]
Oder warum nicht gleich eine Liste, Dictionary oder Array mit einem Record, welcher 3 Felder besitzt.
Delphi-Quellcode:
type
TAuto = record // oder als "class"
Auto: string;
Motor: string;
Leistung: Integer;
end;
Delphi-Quellcode:
TList<TAuto> // TObjectList<TAuto> wenn als CLASS
TArray<TAuto>
TDictionary<string,TAuto> // also name des Autos, mit dessen Eigenschaften