Registriert seit: 7. Jan 2008
Ort: Baden Württemberg- Hohenlohekreis
174 Beiträge
RAD-Studio 2009 Arc
|
Re: unbestimmter Datentyp deklarieren
17. Feb 2010, 11:01
hallo, wie genau definiere ich das jetzt, geht das so:
Delphi-Quellcode:
type
werte<T> = array of T;
tbuffer = class
private
items: werte<T>; //ttrait als unbestimmter Datentyp
...
public
...
procedure setbestimmterdatentyp(bestimmterdatentyp: AnyType);
wie sage ich jetzt, dass <T> zb integer annehmen soll?
Volker ~beware
Wizards First Rule:
People are stupid; given proper motivation, almost anyone will believe almost anything. Because people are stupid, they will believe a lie because they want to believe it’s true, or because they are afraid it might be true
|