使用delphi 7:
AddObject
?答案 0 :(得分:38)
问: How can i add an integer to the object portion of a stringlist item, using AddObject?
答:只需将整数值转换为TObject
List.AddObject('A string',TObject(1));
问:强> How can a retrieve the integer back from a object property of stringlist item?
A:将对象值转换为整数
AValue := Integer(List.Objects[i]);
问: How do i free all objects and list when done?
答:您不需要释放对象列表,因为您没有分配内存。所以只能调用Free
的{{1}}程序。
试试这个示例应用
TStringList