Arraylist构造方法:
public ArrayList(); //默认的构造方法
public ArrayList(ICollection); //参数为集合
public ArrayList(int); //参数为对象空间大小
一个例子:
- namespace _ArrayList
- {
- class Program
- {
- static void Main(string[] args)
- {
- int[] arr = new int[] { 1, 2, 3, 4, 5 };
- ArrayList list = new ArrayList(arr);
- list.Add(6);
- list.Insert(3, 6);
- foreach (int a in list)
- {
- Console.WriteLine(a); //结果为1,2,3,6,4,5,6;
- }
- Console.ReadLine();
- }
- }
- }
复制代码 |