在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1. 作用: 可以使得类和实例能够像数组那样使用一样,又称为带参属性 2. 区分 (1)索引器与数组的比较: 索引器的索引值不受类型限制。用来访问数组的索引值一定是整数,而索引器可以是其他类型的索引值。 3. 使用 (1)例子1 string str = "abc"; char c = str[0]; (2)例子2 static void main(string[] args) { IndexClass indexClass = new IndexClass(); indexClass[0] = "王五"; indexClass[1] = "赵四"; } Class IndexClass() { private string[] name = new string[10]; public string this[int index] { get {return name[index];} set {name[index]=value;} } }
|
请发表评论