Thema
:
Delphi
Konstantes array in einem record initialisieren
Einzelnen Beitrag anzeigen
nicodex
Registriert seit: 2. Jan 2008
Ort: Darmstadt
286 Beiträge
Delphi 2007 Professional
#
5
Re: Konstantes array in einem record initialisieren
8. Mai 2009, 13:29
Alles was du nicht angibst, wird mit 0 (bzw. nil) initialisiert:
markieren
Delphi-Quellcode:
const
Foo:
array
[0..1]
of
record
Bar: Word;
Dyn:
array
of
Word;
end
= (
(Bar: 42
{; Dyn: nil}
),
(
{Bar: 0; Dyn: nil}
)
);
Nico Bendlin
Ambermoon-Soundtrack-CD Preorder-Page
Generic Properties for Blender Library Data
Zitat
nicodex
Öffentliches Profil ansehen
Mehr Beiträge von nicodex finden