将 TStringList 的 AddObject 与整数一起使用?
使用delphi 7:
- 如何将整数添加到字符串列表项的对象部分, 使用
AddObject
? - 如何从对象中检索整数 字符串列表项的属性?
- 如何释放所有对象并列出 什么时候完成?
Using delphi 7:
- How can I add an integer to the object portion of a stringlist item,
usingAddObject
? - How can I retrieve the integer back from a object
property of stringlist item? - How do I free all objects and list
when done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问:
如何使用 AddObject 将整数添加到字符串列表项的对象部分?
A: 只需将整数值转换为 < a href="http://docwiki.embarcadero.com/VCL/en/System.TObject">
TObject
问:
如何从字符串列表项的对象属性中检索整数?
A: 将对象值转换为整数
Q:
完成后如何释放所有对象和列表?
A: 您不需要释放对象列表,因为您没有分配内存。所以只调用
TStringList
的Free
过程。尝试这个示例应用程序
Q:
How can i add an integer to the object portion of a stringlist item, using AddObject?
A: Just cast the integer value to
TObject
Q:
How can a retrieve the integer back from a object property of stringlist item?
A: Cast to integer the Object Value
Q:
How do i free all objects and list when done?
A: You don't need free the object list, because you are not assigning memory. so only call the
Free
procedure of theTStringList
.Try this sample app