码迷,mamicode.com
首页 > 其他好文 > 详细

泛型字典

时间:2016-03-09 10:37:55      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:

// 声明

bplList: TDictionary<string, Integer>;

// 创建

bplList := TDictionary<string, Integer>.Create;

// 往字典里增加一条

h := LoadPackage(bplName);

bplList.Add(bplName, h);

// 查字典

if not bplList.ContainsKey(bplName) then

// 遍历字典

var
i: Integer;
......
for i in bplList.Values do
UnloadPackage(i);
// TryGetValue 
p: TPrintTaskThread;

if g_PrintTasks.TryGetValue(frmPos.cdsPrinter.FieldByName(‘prnName‘).Text, p) then
p.PrintQueue.Enqueue(OneTimePrint);

泛型字典

标签:

原文地址:http://www.cnblogs.com/hnxxcxg/p/5256833.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!