返回此List中指定位置的元素。
Object get(int index)
Index - 需要返回值的索引。
列表中索引位置的值。
以下是此方法的使用示例 -
class Example {
static void main(String[] args) {
def lst = [11, 12, 13, 14];
println(lst.get(0));
println(lst.get(2));
}
}
当我们运行上述程序时,我们将得到以下结果 -
11
13