C# 字典 Dictionary 的用法

编程入门 行业动态 更新时间:2024-10-24 23:17:56

前言

  • 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# 的字典用的还是比较的简单,更多的操作可以详细查看微软官方的文档

更多推荐

C# 字典 Dictionary 的用法

本文发布于:2023-06-14 08:05:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1454126.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:字典   Dictionary

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!