中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中ArrayList如何使用

發布時間:2021-06-23 16:16:41 來源:億速云 閱讀:182 作者:Leah 欄目:建站服務器

C#中ArrayList如何使用,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

ArrayList類是一個特殊的數組。通過添加和刪除元素,就可以動態改變數組的長度。

一、優點
1. 支持自動改變大小的功能
2. 可以靈活的插入元素
3. 可以靈活的刪除元素

4. 可以靈活訪問元素
二、局限性
跟一般的數組比起來,速度上差些

用微軟的話講:

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

ArrayList繼承關系圖

C#中ArrayList如何使用

三、添加元素
1.public virtual int Add(object value);
將對象添加到ArrayList的結尾處
ArrayList aList=new ArrayList();
aList.Add("a");
aList.Add("b");
aList.Add("c");
aList.Add("d");
aList.Add("e");
內容為abcde
2.public virtual void Insert(int index,object value);
將元素插入ArrayList的指定索引處
aList.Insert(0,"aa");
結果為aaabcde
3.public virtual void InsertRange(int index,ICollectionc);
將集合中的某個元素插入ArrayList的指定索引處
ArrayList list2=new ArrayList();
list2.Add("tt");
list2.Add("ttt");
aList.InsertRange(2,list2);
結果為abtttttcde
四、刪除
a)public virtual void Remove(object obj);
從ArrayList中移除特定對象的第一個匹配項,注意是第一個
aList.Remove("a");
結果為bcde
2.public virtual void RemoveAt(intindex);
移除ArrayList的指定索引處的元素
aList.RemoveAt(0);
結果為bcde
3.public virtual void RemoveRange(int index,int count);
從ArrayList中移除一定范圍的元素。Index表示索引,count表示從索引處開始的數目
aList.RemoveRange(1,3);
結果為ae
4.public virtual void Clear();
從ArrayList中移除所有元素。
五、排序
a)public virtual void Sort();
對ArrayList或它的一部分中的元素進行排序。
DropDownList1.DataSource=aList;//DropDown ListDropDownList1;
DropDownList1.DataBind();
結果為eabcd
aList.Sort();//排序
DropDownList1.DataSource=aList;//DropDownListDropDownList1;
DropDownList1.DataBind();
結果為abcde

b)public virtual void Reverse();
將ArrayList或它的一部分中元素的順序反轉。
aList.Reverse();//反轉
DropDownList1.DataSource=aList;//DropDownListDropDownList1;
DropDownList1.DataBind();
結果為edcba

六、查找
a)public virtual int IndexOf(object);
b)public virtual int IndexOf(object,int);
c)public virtual int IndexOf(object,int,int);
返回ArrayList或它的一部分中某個值的第一個匹配項的從零開始的索引。沒找到返回-1。
intnIndex=aList.IndexOf(“a”);//1
nIndex=aList.IndexOf(“p”);//沒找到,-1
d)public virtual int LastIndexOf(object);
e)public virtual int LastIndexOf(object,int);
f)public virtual int LastIndexOf(object,int,int);
返回ArrayList或它的一部分中某個值的最后一個匹配項的從零開始的索引。
intnIndex=aList.LastIndexOf("a");//值為2而不是0
g)public virtual bool Contains(objectitem);
確定某個元素是否在ArrayList中。包含返回true,否則返回false
七、獲取數組中的元素
下面以整數為例,給出獲取某個元素的值的方法
ArrayList aList=new ArrayList();
for(int i=0;i<10;i++)
aList.Add(i);
for(i=0;i<10;i++)
Textbox1.text+=(int)aList[i]+" ";//獲取的方式基本與一般的數組相同,使用下標的方式進行
結果為:0 1 2 3 4 5 6 7 8 9

八、其他
1.public virtual intCapacity{get;set;}
獲取或設置ArrayList可包含的元素數。
2.public virtual intCount{get;}
獲取ArrayList中實際包含的元素數。
Capacity是ArrayList可以存儲的元素數。Count是ArrayList中實際包含的元素數。Capacity總是大于或等于Count。如果在添加元素時,Count超過Capacity,則該列表的容量會通過自動重新分配內部數組加倍。
如果Capacity的值顯式設置,則內部數組也需要重新分配以容納指定的容量。如果Capacity被顯式設置為0,則公共語言運行庫將其設置為默認容量。默認容量為16。
在調用Clear后,Count為0,而此時Capacity切是默認容量16,而不是0
3.public virtual void TrimToSize();
將容量設置為ArrayList中元素的實際數量。
如果不向列表中添加新元素,則此方法可用于最小化列表的內存系統開銷。
若要完全清除列表中的所有元素,請在調用TrimToSize之前調用Clear方法。截去空ArrayList會將ArrayList的容量設置為默認容量,而不是零。
ArrayList aList=new ArrayList();
aList.Add("a");
aList.Add("b");
aList.Add("c");
aList.Add("d");
aList.Add("e");//Count=5,Capacity=16,
aList.TrimToSize();//Count=Capac

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

通道| 双桥区| 郸城县| 湾仔区| 邛崃市| 辛集市| 大厂| 赤壁市| 扎兰屯市| 乡城县| 宁化县| 汾阳市| 随州市| 吴桥县| 东明县| 镇巴县| 墨玉县| 长岭县| 宜都市| 正阳县| 柘城县| 竹溪县| 霍山县| 定南县| 长丰县| 抚顺县| 清苑县| 中宁县| 梁平县| 临海市| 灵台县| 广东省| 乌拉特中旗| 扬州市| 广河县| 海口市| 二连浩特市| 阿合奇县| 岑溪市| 清苑县| 通州市|