2012年11月23日

Array与ArrayList

摘要: 1. Arraypublic abstract class Array : ICloneable, IList, ICollection, IEnumerable, IStructuralComparable, IStructuralEquatable{//////////////////}Array:长度是不变的(定长),里面的数据元素是同类型的,可以说Array是同一种数据类型的集合eg:Int32[] array = new Int32[5];Int32[] array = new Int32[] { 2, 3, 4 };//会根据初始化器中数据元素个数来确定该数组的大小2. Array 阅读全文

posted @ 2012-11-23 10:55 Gcam 阅读(166) 评论(0) 推荐(0) 编辑

导航