Registriert seit: 25. Nov 2005
Ort: München
1.909 Beiträge
Delphi 2010 Professional
|
Re: Funktion die beliebig viele Parameter annehmen kann
14. Mär 2006, 17:39
- Wie in .Net? Gar nicht.
- Unbestimmte Anzahl? Arrays ( übergeben als einfache inline arrays [a, b, c])
- Unbestimmte anzahl unbestimmten Types? const open array
Delphi-Quellcode:
DeineMethode(const param : array of const)
DeineMethode([1, 'b']);
Hui, janz schön flinker Krokophant...
Robert Giesecke I’m a great believer in “Occam’s Razor,” the principle which says:
“If you say something complicated, I’ll slit your throat.”
|