What is the best way to write a FreeAll function that will take a generic TList<T> and free each of the elements of the list?
It makes sense that TList<T>.FreeAll does not exist because it would not make sense if the generic type was a Record or String. Nevertheless it would be very handy if there was some way to achieve the FreeAll functionality if the generic type was an object.
My simple attempt does not compile...
TTest1 = Class
End;
Procedure FreeAll(List : TList<TObject>);
Var
I : Integer;
Begin
For I := 0 To List.Count - 1 Do
List[I].Free;
End;
Procedure Main;
Var
List : TList<TTest1>;
I : Integer;
Begin
List := TList<TTest1>.Create;
List.Add(TTest1.Create);
List.Add(TTest1.Create);
List.Free;
FreeAll(List);
List.Free;
End;
TObjectList? When itsOwnsObjectsproperty is set, it will automatically free objects when they're removed from the list (by calling any ofDelete,Clear, orFree). – Rob Kennedy Nov 3 '10 at 13:40