黑马程序员技术交流社区
标题:
[color=Lime]public static T Get
(this Dictionary
dics, TKe
[打印本页]
作者:
王志龙
时间:
2012-4-26 21:52
标题:
[color=Lime]public static T Get
(this Dictionary
dics, TKe
public static T Get<TKey, T>(this Dictionary<TKey, T> dics, TKey key, Func<T> fetch)
{
if (dics.ContainsKey(key))
{
return dics[key];
}
else
{
T value = fetch();
dics[key] = value;
return value;
}
}
,第一句表示什么啊,看的迷迷糊糊的
作者:
错,谁的错丶
时间:
2012-5-1 00:26
说得是泛型接口
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2