使用TStringList的AddObject和整数?

时间:2011-08-30 01:06:26

标签: delphi delphi-7 tstringlist

使用delphi 7:

  • 如何将整数添加到stringlist项的对象部分, 使用AddObject
  • 如何从对象中检索整数 stringlist item的属性?
  • 如何释放所有对象和列表 什么时候完成?

1 个答案:

答案 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