Q: How can i add an integer to the object portion of a stringlist item, using AddObject?
A: Просто приведите целочисленное значение к TObject
List.AddObject('A string',TObject(1));
Q: How can a retrieve the integer back from a object property of stringlist item?
A: Приведение к целому числу Значение объекта
AValue := Integer(List.Objects[i]);
Q: How do i free all objects and list when done?
A: Вам не нужно освобождать список объектов, потому что вы не выделяете память .так что вызывайте только Free
процедуру TStringList
.
Попробуйте этот пример приложения
{$APPTYPE CONSOLE}
uses
Classes,
SysUtils;
Var
List : TStringList;
i : Integer;
begin
try
List:=TStringList.Create;
try
//assign the string and some integer values
List.AddObject('A string',TObject(1));
List.AddObject('Another string',TObject(100));
List.AddObject('And another string',TObject(300));
//Get the integer values back
for i:=0 to List.Count - 1 do
Writeln(Integer(List.Objects[i]));
finally
//Free the list
List.free;
end;
except
on E:Exception do
Writeln(E.Classname, ': ', E.Message);
end;
Readln;
end.