Groovy - size()



获取此列表中的元素数。

语法

int size()

参数

返回值

列表的大小。

示例

以下是使用方法的示例 −

class Example {
   static void main(String[] args) {
      def lst = [11, 12, 13, 14];
      println(lst.size);
   } 
}

当我们运行以上程序时,会得到以下结果 −

4
groovy_lists.htm
广告