C# 中HashTable的用法,请帮忙!
请问HashTable中有没有取得对应Key键对应的值?usingSystem;usingSystem.Collections.Generic;usingSystem.L...
请问HashTable中有没有取得对应Key键对应的值? using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections; namespace HashConnect { class Program { static void Main(string[] args) { Hashtable table = new Hashtable(); table.Add("one", "亲爱的姑娘我爱你"); table.Add("two", "亲爱的同学我想你"); table.Add("three", "亲爱的老师我永远记住你"); table.Add("four", "亲爱的父母我愿永远和你在一起"); PrintKeyAndValues(table); } public static void PrintKeyAndValues(Hashtable table) { Console.WriteLine("\t-KEY-\t-VALUE-"); foreach (DictionaryEntry de in table) Console.WriteLine("\t{0}:\t{1}", de.Key, de.Value); Console.ReadKey(); } } }
展开
2个回答
展开全部
hashtable实现了索引器,因此你想取key为"two"的值,非常容易,object value = table["two"];就可以了 因为返回值是object类型,如果前提确定时string型,可以string value = (string)table["two"];
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询