Groovy - size()

返回此 Range 中的元素数。


语法

int size()

参数

None


返回值

返回范围的大小。

以下是该方法的用法示例 −

class Example { 
   static void main(String[] args) { 
      // 使用 def 的整数示例
      def rint = 1..10; 
      println(rint.size()); 
   } 
}

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

10

❮ Groovy 范围