C#中集合的使用--ArrayList

来源:http://www.cnblogs.com/numbqq/archive/2016/04/06/5359846.html
-Advertisement-
Play Games

集合:可以使用集合來維護對象組。 C#中的數組實現為 System.Array 類的實例,它們只是集合類(Collection Classes)中的一種類型。集合類一般用於處理對象列表,其功能比簡單數組要多,功能大多是通過實現 System.Collections 名稱空間中的介面而獲得的, 因此集 ...


集合:可以使用集合來維護對象組。

  C#中的數組實現為 System.Array 類的實例,它們只是集合類(Collection Classes)中的一種類型。集合類一般用於處理對象列表,其功能比簡單數組要多,功能大多是通過實現 System.Collections 名稱空間中的介面而獲得的,

  因此集合的語法已經標準化了。這個名稱空間還包含其他一些有趣的東西,例如,以與 System.Array 不同的方式實現這些介面的類。集合的功能(包括基本功能,例如,用[index]語法訪問集合中的項)可以通過介面來實現,

  該介面不僅沒有限制我們使用基本集合類,例如 System.Array,相反,我們還可以創建自己的定製集合類。這些集合可以專用於要枚舉的對象(即要從中建立集合的對象)。這麼做的一個優點是定製的集

  合類可以是強類型化的。也就是說,從集合中提取項時,不需要把它們轉換為正確的類型。

 

  System.Collections 命名空間中的幾個介面提供了基本的組合功能: 

  IEnumerable 可以迭代集合中的項。
  ICollection(繼承於 IEnumerable)可以獲取集合中項的個數,並能把項複製到一個簡單的數組類型中。
  IList(繼承於 IEnumerable 和 ICollection)提供了集合的項列表,允許訪問這些項,並提供其他一些與項列表相關的基本功能。
  IDictionary(繼承於 IEnumerable 和 ICollection)類似於 IList,但提供了可通過鍵值(而不是索引)訪問的項列表。

 

  System.Array 類實現 IList、 ICollection 和 IEnumerable,但不支持 IList 的一些更高級的功能,它表示大小固定的項列表。

  ArrayList基本使用方法如下:

 1         static void Main(string[] args)
 2         {
 3             //arrayList容量為10
 4             ArrayList arrayList1 = new ArrayList(10);
 5 
 6            // arrayList1[0] = 1;//此時不能通過索引來訪問ArrayList否則會拋出 System.ArgumentOutOfRangeException
 7             //給ArrayList添加元素
 8             arrayList1.Add(1);
 9             arrayList1.Add(2);
10             arrayList1.Add(3);
11             arrayList1.Add(4);
12             arrayList1.Add("hello");
13             arrayList1.Add("ArrayList");
14 
15             arrayList1[2] = 4;//這裡可以通過索引方式訪問ArrayList
16 
17             Console.WriteLine("arrayList1 count: {0}", arrayList1.Count);
18 
19             foreach (object i in arrayList1)
20             {
21                 Console.WriteLine("arrayList1 item {0} type:{1}", i, i.GetType());
22             }
23 
24             Console.WriteLine("remove item at index 4");
25             arrayList1.RemoveAt(4);
26 
27             foreach (object i in arrayList1)
28             {
29                 Console.WriteLine("arrayList1 item {0} type:{1}", i, i.GetType());
30             }
31 
32             Console.WriteLine("remove item 2");
33             arrayList1.Remove(2);
34 
35             foreach (object i in arrayList1)
36             {
37                 Console.WriteLine("arrayList1 item {0} type:{1}", i, i.GetType());
38             }
39 
40             Console.WriteLine("\n\n");
41             //通過ArrayList1創建ArrayList2
42             ArrayList arrayList2 = new ArrayList(arrayList1);
43             Console.WriteLine("arrayList2 count: {0}", arrayList1.Count);
44             foreach (object i in arrayList1)
45             {
46                 Console.WriteLine("arrayList2 item {0} type:{1}", i, i.GetType());
47             }
48 
49             Console.WriteLine("\n\nPress any key to exit!");
50             Console.ReadKey();
51         }

  運行結果:

arrayList1 count: 6
arrayList1 item 1 type:System.Int32
arrayList1 item 2 type:System.Int32
arrayList1 item 4 type:System.Int32
arrayList1 item 4 type:System.Int32
arrayList1 item hello type:System.String
arrayList1 item ArrayList type:System.String
remove item at index 4
arrayList1 item 1 type:System.Int32
arrayList1 item 2 type:System.Int32
arrayList1 item 4 type:System.Int32
arrayList1 item 4 type:System.Int32
arrayList1 item ArrayList type:System.String
remove item 2
arrayList1 item 1 type:System.Int32
arrayList1 item 4 type:System.Int32
arrayList1 item 4 type:System.Int32
arrayList1 item ArrayList type:System.String



arrayList2 count: 4
arrayList2 item 1 type:System.Int32
arrayList2 item 4 type:System.Int32
arrayList2 item 4 type:System.Int32
arrayList2 item ArrayList type:System.String


Press any key to exit!

  

  自定義集合

  可以通過繼承System.Collections.CollectionBase 類的方式自定義集合,CollectionBase 類有介面 IEnumerable、 ICollection 和 IList,但只提供了一些簡要的實現代碼,特別是 IList 的 Clear()和 RemoveAt()方法,

  以及 ICollection 的 Count 屬性。如果要使用提供的功能,就需要自己執行其他代碼。

  為便於完成任務, CollectionBase 提供了兩個受保護的屬性,它們可以訪問存儲的對象本身。我們可以使用 List 和 InnerList, List 可以通過 IList 介面訪問項, InnerList 則是用於存儲項的 ArrayList對象。

 1     public abstract class Animal
 2     {
 3         private string name;
 4         public string Name
 5         {
 6             get { return name; }
 7             set { name = value; }
 8         }
 9 
10         public Animal()
11         {
12             name = "NULL";
13         }
14 
15         public Animal(string newName)
16         {
17             name = newName;
18         }
19 
20         public void Feed()
21         {
22             Console.WriteLine("{0} has been fed.", name);
23         }
24     }
25 
26     public class Dog:Animal
27     {
28         public void Run()
29         {
30             Console.WriteLine("Dog run....");
31         }
32 
33         public Dog(string newName)
34             : base(newName)
35         {
36 
37         }
38     }
39 
40     public class Bird : Animal
41     {
42         public Bird(string newName)
43             : base(newName)
44         {
45 
46         }
47 
48         public void Fly()
49         {
50             Console.WriteLine("Bird fly....");
51         }
52     }
53 
54     class Animals:CollectionBase
55     {
56         public void Add(Animal animal)
57         {
58             List.Add(animal);
59         }
60 
61         public void Remove(Animal animal)
62         {
63             List.Remove(animal);
64         }
65 
66         public Animals()
67         {
68 
69         }
70 
71         //通過下麵代碼使得Animals可以通過索引訪問
72         public Animal this[int animalIndex]
73         {
74             get
75             {
76                 return (Animal)List[animalIndex];
77             }
78             set
79             {
80                 List[animalIndex] = value;
81             }
82         }
83     }
84 
85         static void Main(string[] args)
86         {
87             Animals animals = new Animals();
88             animals.Add(new Dog("Jack"));
89             animals.Add(new Bird("Jason"));
90 
91             foreach (Animal animal in animals)
92             {
93                 animal.Feed();
94             }
95 
96             Console.WriteLine("\n\n\nPress any key to exit!");
97             Console.ReadKey();
98         }

  運行結果:

Jack has been fed.
Jason has been fed.



Press any key to exot!

  其中, Add()和 Remove()方法實現為強類型化的方法,使用 IList 介面中用於訪問項的標準 Add()方法。該方法現在只用於處理 Animal 類或派生於 Animal 的類,而前面介紹的 ArrayList 實現代碼可處理任何對象。

  索引符(indexer)是一種特殊類型的屬性,可以把它添加到一個類中,以提供類似於數組的訪問。this 關鍵字與方括弧中的參數一起使用,但這看起來類似於其他屬性。這個語法是合理的,因為在訪問索引符時,將使用對象名,

  後跟放在方括弧中的索引參數(例如 MyAnimals[0])。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 雖然現在各種圖形化管理工具方便了MySQL的管理,但是偶爾還是需要手動輸入指令來使用比較方便,以下是摘抄的一些命令,供自己備忘使用。 1、顯示資料庫列表。 show databases; 2、顯示庫中的數據表: use mysql;show tables; 3、顯示數據表的結構: describe ...
  • 1、自頂向下查找 2、自底向上查找 ...
  • 我相信經常有同學想刪除某一個表時,遇到這樣或那樣的約束無法刪除一頭霧水,這時您請不要著急,先看看以下提供的刪除所有約束、表、視圖等SQL腳本,或在測試環境試用。但是您也可以僅刪除某一個對象(表)的所有約束或全部約束,您只需要把游標里用到的SELECT查詢語句單獨拿出來執行一下,自己看看就明白了,刪除 ...
  • 在保密你的伺服器和數據,防備當前複雜的攻擊,SQL Server有你需要的一切。但在你能有效使用這些安全功能前,你需要理解你面對的威脅和一些基本的安全概念。這篇文章提供了基礎,因此你可以對SQL Server里的安全功能充分利用,不用在面對特定威脅,不能保護你數據的功能上浪費時間。 從讓人眼花繚亂的 ...
  • 介紹 grep是一個功能強大的文本搜索命令,可以用它來搜索某個文件中是否包含指定的搜索內容,它可以利用正則表達式來做複雜的篩選操作,它還可以為其它命令傳輸給管道的篩選,比如我們常用到的分析單個進程的操作就是會利用它“ps -ef|grep command”。 語法 grep [OPTION]... ...
  • 一、關於CentOS系統介紹 CentOS(Community Enterprise Operating System,中文意思是:社區企業操作系統)是Linux發行版之一,它是來自於Red Hat Enterprise Linux依照開放源代碼規定釋出的源代碼所編譯而成。基於Red Hat持續升級 ...
  • 1 引言 相關源碼下載地址:http://www.jinhusns.com/Products/Download/?type=xcj 1.1 目的 用於社會化開發平臺的架構設計指導,闡述基礎設施及關鍵技術構件、業務構件的設計思想及具體實現。 讀者包括但不限於社會化開發平臺的研發人員,使用社會化開發平臺 ...
  • SSIO的更新 在SSIO上增加了UDP通訊方式,可以到Github上下載源代碼。在原來的項目中,遠端的設備與中心站的數據交互並沒有使用過UDP方式。這種短連接的通訊鏈路,不容易維護,主要體現在:(1)持續的數據交互能力。(2)對現場設備進行長時間的維護和校準。(3)SSIO要協調設備、IO和控制方 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...