Zitat:
Delphi-Quellcode:
TRttiPropertyInfoAttributeTypesSet =
Low(TRttiPropertyInfoAttributeTypes)..High(TRttiPropertyInfoAttributeTypes);
Wie schon gesagt wurde: TRttiPropertyInfoAttributeTypesSet ist kein SET, sondern ebenfalls ein ENUM!
Es ist quasi nur sowas wie eine Kopie von TRttiPropertyInfoAttributeTypes.
(ein neuer Typ, mit dem selben Wertebereich)
Code:
TRttiPropertyInfoAttributeTypesSet =
[color=#ff0000][[/color]Low(TRttiPropertyInfoAttributeTypes)..High(TRttiPropertyInfoAttributeTypes)[color=#ff0000]][/color];
// oder
TRttiPropertyInfoAttributeTypesSet = [color=#ff0000]set of[/color]
Low(TRttiPropertyInfoAttributeTypes)..High(TRttiPropertyInfoAttributeTypes);
// oder
TRttiPropertyInfoAttributeTypesSet = set of [color=#ff0000]TRttiPropertyInfoAttributeTypes[/color];
für SETs geht aber sowas:
Code:
for AttributeType in [color=#ff003f]TRttiPropertyInfoAttributeTypesSet[/color] do
Da gehört eine Variable oder Konstante und kein Typ hin.
IN durchläuft Speicherinhalte und keine Deklarationen.
for AttributeType = Low(TRttiPropertyInfoAttributeTypesSet) to High(TRttiPropertyInfoAttributeTypesSet) do
Delphi-Quellcode:
for AttributeType = Low(TRttiPropertyInfoAttributeTypes) to High(TRttiPropertyInfoAttributeTypes) do
temp := [Low(TRttiPropertyInfoAttributeTypes)..High(TRttiPropertyInfoAttributeTypes)];
for AttributeType in temp do
PS: Es gab schonmal 'nen Thread zu sowas (letztes Jah ... find ihn nur grade nicht), in welchem es auch darum ging alle Felder eines SET zu durchlaufen.
Und da nur ein Hinweis: sowas geht nur mit vollständigen SETs
Sobald etwas wie Folgendes vorkommt, dann gibt es keine
RTTI zu den Feldern des Enum/Set.
Delphi-Quellcode:
type
a = (c=3, e=9, f);
b = set of a;