C#雜湊表(HashTable)和Dictionary比較

來源:互聯網
上載者:User

標籤:oid   ons   edm   tostring   get   contains   windows   console   添加   

添加資料時Hashtable快。頻繁調用資料時Dictionary快。

Dictionary<K,V>是泛型的,當K或V是實值型別時,其速度遠遠超過Hashtable。

 

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace WindowsFormsApp1{    public class Student    {        private string _name;        private int _age;        public string Name { get => _name; set => _name = value; }        public int Age { get => _age; set => _age = value; }            }}
private void button1_Click(object sender, EventArgs e)        {            Stopwatch sw = new Stopwatch();            Hashtable hashtable = new Hashtable();            Dictionary<int, Student> dict = new Dictionary<int, Student>();            int countNum = 1000000;                        sw.Start();            for (int i = 0; i < countNum; i++)            {                Student s = new Student();                s.Name = "n" + i.ToString();                s.Age = i;                hashtable.Add(i, s);            }            sw.Stop();            Console.WriteLine(sw.ElapsedMilliseconds);  //輸出: 817            sw.Restart();            for (int i = 0; i < countNum; i++)            {                Student s = new Student();                s.Name = "n" + i.ToString();                s.Age = i;                dict.Add(i, s);            }            sw.Stop();            Console.WriteLine(sw.ElapsedMilliseconds);  //輸出: 859            sw.Restart();            for (int i = 0; i < countNum; i++)            {                hashtable.ContainsKey(i);                Student s1 =(Student)hashtable[i];                string str1 = s1.Name;            }            sw.Stop();            Console.WriteLine(sw.ElapsedMilliseconds);  //輸出: 137            sw.Restart();            for (int i = 0; i < countNum; i++)            {                dict.ContainsKey(i);                string str=dict[i].Name;            }            sw.Stop();            Console.WriteLine(sw.ElapsedMilliseconds);  //輸出: 51        }

 

C#雜湊表(HashTable)和Dictionary比較

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.