虫虫首页|资源下载|资源专辑|精品软件
登录|注册

您现在的位置是:虫虫下载站 > 资源下载 > Windows编程 > Delphi 泛型容器 TDictionary 的用法 Demo

Delphi 泛型容器 TDictionary 的用法 Demo

  • 资源大小:80 K
  • 上传时间: 2015-07-01
  • 上传用户:pcplayer
  • 资源积分:2 下载积分
  • 标      签: Delphi 泛型

资 源 简 介

Collection of key-value pairs. 

TDictionary represents a generic collection of key-value pairs. 

This class provides a mapping from a collection of keys to a collection of values. When you create a TDictionary object, you can specify various combinations of initial capacity, equality operation, and initial content. 

You can add a key that is associated with a corresponding value with the Add or AddOrSetValue methods. You can remove entries with Remove or Clear, which removes all key-value pairs. Adding or removing a key-value pair and looking up a key are efficient, close to O(1), because keys are hashed. A key must not be nil (though a value may be nil) and there must be an equality comparison operation for keys. 

You can test for the presence or keys and values with the TryGetValue, ContainsKey and ContainsValue methods. 

The Items property lists all Count dictionary entries. You can also set and get values by indexing the Items property. Setting the value this way overwrites any existing value. 

The class TObjectDictionary inherits from TDictionary and provides an automatic mechanism for freeing objects removed from dictionary entries. 

相 关 资 源