C#中list的用法執行個體

來源:互聯網
上載者:User
我先舉個例子:

在vs2010中建立一個winform的解決方案,然後定義一個類Person,Person.cs 的代碼如下:

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace test{    public class Person    {        public string Name { get; set; }        public int Age { get; set; }        public string six { get; set; }        public DateTime Birthday { get; set; }    }}

(滑鼠移到代碼上去,在代碼的頂部會出現四個表徵圖,第一個是查看原始碼,第二個是複製代碼,第三個是列印代碼,第四個是協助)
然後拖入一個按紐,雙擊按紐,在裡面添加的代碼:

List<Person> list = new List<Person>();Person person = null;for (int i = 0; i < 10; i++){    person = new Person();    person.Name = string.Format("xxxx{0}", i);    person.Age = 20 + i;    person.Birthday = DateTime.Now.AddDays(i);    person.six = i % 2 == 0 ? "女" : "男";    list.Add(person);}string serialStr = JsonConvert.SerializeObject(list);List<Person> listperson = new List<Person>();listperson = JsonConvert.DeserializeObject<List<Person>>(serialStr);for (int i = 0; i < listperson.Count; i++){    MessageBox.Show(listperson[i].Name);}

(滑鼠移到代碼上去,在代碼的頂部會出現四個表徵圖,第一個是查看原始碼,第二個是複製代碼,第三個是列印代碼,第四個是協助)

以上就是一個簡單的List<T>的用法執行個體。




C# List<T>用法

所屬命名空間:using System.Collections.Generic;


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


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


一、 List的基礎、常用方法:


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

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

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


b.增加元素:List. Add(T item) 添加一個元素

如:mList.Add("賴炎濱");


c.插入元素:Insert(int index, T item); 在index位置添加一個元素

如:mList.Insert(1, "laiyanbin");


d.刪除元素: List. Remove(T item) 刪除一個值

如:mList.Remove("賴炎濱");


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


如.:mList.RemoveAt(0);


List. RemoveRange(int index, int count); 從下標index開始,刪除count個元素

如.:mList.RemoveRange(3, 2); //超出刪除的範圍會出錯

註:刪除某元素後,其後面的元素下標自動跟進


e.判斷是否存在List:List. Contains(T item) 得到的結果是返回true或false


f.排序:List. Sort () //預設是元素第一個字母按升序


給List裡面元素順序反轉:

List. Reverse () //可以與List. Sort ()配合使用,達到想要的效果


遍曆List中元素:

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

{

Console.WriteLine(element);

}


g.List清空:List. Clear ()

如:mList.Clear();


h.獲得List中元素數目:

List. Count () 返回int值


i.添加數組進List:string[] temArr = { Ha","Hunter", "Tom", "Lily", "Jay", "Jim", "Kuku", " "Locu" };

mList.AddRange(temArr);


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

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

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

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


3、List與數組的相互轉換

1.從string[]轉List<string>

例如:string[] str={“1”,”2”};

List <string> list=new List<string>(str);

2.從List<string>轉string[]


例如:List<string> list=new List<string>;

String[] str=list.ToArray();


//ViewState["idlist"]轉換成List<>


List<int> idlist=(List<int>)ViewState["idlist"]



相關文章

聯繫我們

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