介紹C# List<T>用法詳解

來源:互聯網
上載者:User
1 有關介紹

(1)所屬命名空間:System.Collections.Generic

public class List<T> : IList<T>, ICollection<T>, IEnumerable<T>, IList, ICollection, IEnumerable.

(2)List<T>類是ArrayList類的泛型等效類。該類使用大小可按需動態增加的數組實現IList<T>泛型介面。

(3)泛型的好處: 它為使用c#語言編寫物件導向程式增加了極大的效力和靈活性。不會強行對實值型別進行裝箱和拆箱,或對參考型別進行向下強制類型轉換,所以效能得到提高。

(4) 效能注意事項:在決定使用 List<T> 還是使用 ArrayList 類(兩者具有類似的功能)時,記住 List<T> 類在大多數情況下執行得更好並且是型別安全的。

如果對 List<T> 類的類型 T 使用參考型別,則兩個類的行為是完全相同的。但是,如果對類型 T 使用實值型別,則需要考慮實現和裝箱問題。

(5) 用微軟的話講:

“添加到 ArrayList 中的任何引用或實值型別都將隱式地向上強制轉換為 Object。如果項是實值型別,則必須在將其添加到列表中時進行裝箱操作,在檢索時進行unboxing操作。強制轉換以及裝箱和unboxing操作都會降低效能;在必須對大型集合進行逐一查看的情況下,裝箱和unboxing的影響非常明顯。”

常用方法

1 聲明:

(1)List<T> mList = new List<T>();

T為列表中元素類型,現在以string類型作為例子

如: List<string> mList = new List<string>();

(2)List<T> testList =new List<T> (IEnumerable<T> collection);

以一個集合作為參數建立List

string[] temArr = { "Ha", "Hunter", "Tom", "Lily", "Jay", "Jim", "Kuku", "Locu" };

List<string> testList = new List<string>(temArr);

2 添加元素:

(1) List. Add(T item) 添加一個元素

mList.Add("John");

(2) List. AddRange(IEnumerable<T> collection) 添加一組元素

string[] temArr = { "Ha","Hunter", "Tom", "Lily", "Jay", "Jim", "Kuku", "Locu" };

mList.AddRange(temArr);

(3)Insert(int index, T item); 在index位置添加一個元素

mList.Insert(1, "Hei");

遍曆List中元素:

foreach (T element in mList) T的類型與mList聲明時一樣

{

Console.WriteLine(element);

} 如下:

foreach (string s in mList)

{

Console.WriteLine(s);

}

2 刪除元素

(1)List. Remove(T item) 刪除一個值

如: mList.Remove("Hunter");

(2) List. RemoveAt(int index); 刪除下標為index的元素

如 mList.RemoveAt(0);

(3) List. RemoveRange(int index, int count);

從下標index開始,刪除count個元素

如 mList.RemoveRange(3, 2);

3判斷某個元素是否在該List中:

List. Contains(T item) 返回true或false,很實用

if (mList.Contains("Hunter"))

{

Console.WriteLine("There is Hunter in the list");

}

else

{

mList.Add("Hunter");

Console.WriteLine("Add Hunter successfully.");

}



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.