Groovy - Lists get()

返回此列表中指定位置的元素。


语法

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

❮ Groovy 列表