VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • C#教程之C#介绍ArrayList和List的区别(第一篇内容博(2)

  

 

List:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//1.首先创建对象
List<string> list=new List<string>();
//使用Add()方法添加元素,只能添加字符串类型的元素
list.Add("123");
list.Add ("778");
 
//实用[下标]来获取指定位置的元素
Console.WriteLine ("arr[0]="+arr[0]);
//获取当前数组中的元素的数目
int count1=arr.Count;
//使用insert()方法向指定下标位置插入元素
arr.Insert(1,"老张");
Console.WriteLine ("arr[1]="+arr[1]);
//使用Remove()方法从数组中删除指定元素
arr.Remove("老张");
//使用RemoveAr()方法删除指定下标位置的元素
list.RemoveAt(0);
Console.WriteLine (list[0]);
//Contains()判断指定元素是否存在在当前数组中
bool b1=list.Contains("老王");
if (b1)
{
    Console.WriteLine ("老王在数组中!!!!");
}
else
{
    Console.WriteLine ("老王不在数组中!!!!");
}
//进行集合的清空
list.Clear ();
Console.WriteLine (list.Count);           

相关教程