123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- program Example111;
- { Program to demonstrate the Include/Exclude functions }
- Type
- TEnumA = (aOne,aTwo,aThree);
- TEnumAs = Set of TEnumA;
-
- Var
- SA : TEnumAs;
- Procedure PrintSet(S : TEnumAs);
-
- var
- B : Boolean;
-
- procedure DoEl(A : TEnumA; Desc : String);
-
- begin
- If A in S then
- begin
- If B then
- Write(',');
- B:=True;
- Write(Desc);
- end;
- end;
-
- begin
- Write('[');
- B:=False;
- DoEl(aOne,'aOne');
- DoEl(aTwo,'aTwo');
- DoEl(aThree,'aThree');
- Writeln(']')
- end;
- begin
- SA:=[];
- Include(SA,aOne);
- PrintSet(SA);
- Include(SA,aThree);
- PrintSet(SA);
- Exclude(SA,aOne);
- PrintSet(SA);
- Exclude(SA,aTwo);
- PrintSet(SA);
- Exclude(SA,aThree);
- PrintSet(SA);
- end.
-
|