C# 字典 Dictionary 的用法

前言

  • C# 中的 字典 Dictionary的用法,可以查看微软MSDN的在线文档

方法验证

  • 这里建一个 C# WinForm的应用工程

在这里插入图片描述

字典

  • 字典 Dictionary 就是【键值对】的管理,可以添加多个【键值对】,用处还是比较的广泛的
  • 如学号与姓名的键值对的管理
  • 键(Key)必须是唯一的,值(Value)可以相同可以不相同
  • 为了表达方便,尽量不使用空值(NULL)最为Key 或者 Value

测试代码

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Dictionary_demo
{
    public partial class Form1 : Form
    {
        Dictionary<string, string> dictDemo = new Dictionary<string, string>();
        public Form1()
        {
            InitializeComponent();
        }

        private void add_dict_Click(object sender, EventArgs e)
        {
            this.textBoxInfo.AppendText("------------- Add item -------------\r\n");
            if (dictDemo.ContainsKey(textKey.Text))
            {
                this.textBoxInfo.AppendText("Key : " + textKey.Text + " already exits!\r\n");
            }
            else
            {
                dictDemo.Add(textKey.Text, textValue.Text);
                this.textBoxInfo.AppendText("Add Key : " + textKey.Text + " \r\n");
                this.textBoxInfo.AppendText("Add Value : " + textValue.Text + " \r\n");
            }
        }

        private void btnLogClean_Click(object sender, EventArgs e)
        {
            this.textBoxInfo.Clear();
        }

        private void btnFindFromKey_Click(object sender, EventArgs e)
        {
            this.textBoxInfo.AppendText("------------- find item with Key -------------\r\n");
            textValue.Text = "";
            if (dictDemo.ContainsKey(textKey.Text))
            {
                string value = "";
                this.textBoxInfo.AppendText("Key : " + textKey.Text + " exits!\r\n");
                if (dictDemo.TryGetValue(textKey.Text, out value))
                {
                    textValue.Text = value;
                    this.textBoxInfo.AppendText("Find : " + "Key = " + textKey.Text + "Value = " + value + "\r\n");
                }
                else
                {
                    this.textBoxInfo.AppendText("Key : " + textKey.Text + " find error!\r\n");
                }
            }
            else
            {
                this.textBoxInfo.AppendText("Key : " + textKey.Text + " not exits!\r\n");
            }
        }

        private void btnFindFromValue_Click(object sender, EventArgs e)
        {
            this.textBoxInfo.AppendText("------------- find item with value -------------\r\n");
            foreach (KeyValuePair<string, string> kvp in dictDemo)
            {
                if (kvp.Value.Equals(textValue.Text))
                {
                    this.textBoxInfo.AppendText("key = " + kvp.Key + " Value = " + kvp.Value + " \r\n");
                }
            }
            this.textBoxInfo.AppendText("------------- print end   -------------\r\n");
        }

        private void btnDictPrint_Click(object sender, EventArgs e)
        {
            this.textBoxInfo.AppendText("------------- print start -------------\r\n");
            foreach (KeyValuePair<string, string> kvp in dictDemo)
            {
                this.textBoxInfo.AppendText("key = " + kvp.Key + " Value = " + kvp.Value + " \r\n");
            }
            this.textBoxInfo.AppendText("------------- print end   -------------\r\n");
        }

        private void btnDictDelete_Click(object sender, EventArgs e)
        {
            this.textBoxInfo.AppendText("------------- remove item -------------\r\n");
            dictDemo.Remove(textKey.Text);
            this.textBoxInfo.AppendText("Remove itme : Key = " + textKey.Text + " \r\n");
        }
    }
}

测试方法

在这里插入图片描述

相关的API

初始化

  • Dictionary<string, string> dictDemo = new Dictionary<string, string>();
  • 注意 Key 与 Value的类型,可以随便,不一定是string类型

添加

  • 使用 Add 方法添加,如:
    dictDemo.Add(textKey.Text, textValue.Text);

删除

  • 使用 remove 方法,如
    dictDemo.Remove(textKey.Text);
  • 清空字典可以使用 clear方法
  • dictDemo.clear();

查找

  • 按关键字查找,最好先判断关键字是否存在,如:
    if (dictDemo.ContainsKey(textKey.Text))
  • 如果key 存在,可以使用:TryGetValue 尝试获取值,或者直接通过索引:
    string value = dictDemo[textKey.Text];

遍历

  • 使用 KeyValuePair 方法
            foreach (KeyValuePair<string, string> kvp in dictDemo)
            {
                if (kvp.Value.Equals(textValue.Text))
                {
                    this.textBoxInfo.AppendText("key = " + kvp.Key + " Value = " + kvp.Value + " \r\n");
                }
            }

小结

  • C# 的字典用的还是比较的简单,更多的操作可以详细查看微软官方的文档
  • 4
    点赞
  • 33
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

张世争

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值