索引运算符 抽象方法

E 索引运算符(
  1. int index
)

列表中给定 index 的对象。

index 必须是该列表的有效索引,这意味着 index 必须是非负数且小于 length

实现

E operator [](int index);