blob: 5714ff7d78b9eb0d39278e0e2256c7d7fd947a7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
Program ex33;
{ Program to demonstrate the TCollection.AtDelete method }
Uses Objects,MyObject; { For TMyObject definition and registration }
Var C : PCollection;
M : PMyObject;
I : Longint;
begin
Randomize;
C:=New(PCollection,Init(120,10));
For I:=1 to 100 do
begin
M:=New(PMyObject,Init);
M^.SetField(I-1);
C^.Insert(M);
end;
Writeln ('Added 100 Items.');
With C^ do
While Count>0 do AtDelete(Count-1);
Writeln ('Freed all objects.');
Dispose(C,Done);
end.
|