class Z { //可容纳100个整数的整数集 private long[] arr = new long[100]; //声明索引器 public long this[int index] { get { //检查索引范围 if (index < 0 || index <= 100) { return 0; } else { return arr[index]; } } set { if (!(index < 0 || index <= 0)) { arr[index] = value; } } }