• C# 泛型Dictionary (Hashtable)


    C# 泛型Dictionary (Hashtable)using System;
    using System.Collections.Generic;
    public class Example
    {
        public static void Main()
        {
            //创建泛型哈希表,然后加入元素
            Dictionary<string, string> oscar = new Dictionary<string, string>();
            oscar.Add("哈莉•贝瑞", "《死囚之舞》");
            oscar.Add("朱迪•丹奇", "《携手人生》");
            oscar.Add("尼科尔•基德曼", "《红磨坊》");
            oscar.Add("詹妮弗•康纳利", "《美丽心灵》");
            oscar.Add("蕾妮•齐维格", "《BJ单身日记》");
            //删除元素
            oscar.Remove("詹妮弗•康纳利");
            //假如不存在元素则加入元素
            if (!oscar.ContainsKey("茜茜•斯派克")) oscar.Add("茜茜•斯派克", "《不伦之恋》");
            //显然容量和元素个数
            Console.WriteLine("元素个数: {0}", oscar.Count);
            //遍历集合
            Console.WriteLine("74届奥斯卡最佳女主角及其电影:");
            foreach (KeyValuePair<string, string> kvp in oscar)
            {
                Console.WriteLine("姓名:{0},电影:{1}", kvp.Key, kvp.Value);
            }
            //得到哈希表中键的集合
            Dictionary<string, string>.KeyCollection keyColl = oscar.Keys;
            //遍历键的集合
            Console.WriteLine("最佳女主角:");
            foreach (string s in keyColl)
            {
                Console.WriteLine(s);
            }
            //得到哈希表值的集合
            Dictionary<string, string>.ValueCollection valueColl = oscar.Values;
            //遍历值的集合
            Console.WriteLine("最佳女主角电影:");
            foreach (string s in valueColl)
            {
                Console.WriteLine(s);
            }
            //使用TryGetValue方法获取指定键对应的值
            string slove = string.Empty;
            if (oscar.TryGetValue("朱迪•丹奇", out slove))
                Console.WriteLine("我最喜欢朱迪•丹奇的电影{0}", slove);
            else
                Console.WriteLine("没找到朱迪•丹奇的电影");
            //清空哈希表
            oscar.Clear();
            Console.ReadLine();
        }
    }
    
    
    运行效果如下:
    

      

  • 相关阅读:
    开启线程及线程锁、线程安全
    普通验证码的简单识别
    守护进程
    主动开启进程与join方法
    winForm调用WebApi程序
    使用itextsharp组件剪切PDF文件输出流文件
    通过winform窗体实现摇号
    Api程序接口对接
    C#创建txt文件并写入内容
    打印dot模板自动添加表格
  • 原文地址:https://www.cnblogs.com/xiaofengfeng/p/2596868.html
Copyright © 2020-2023  润新知