Groovy - 大小()


返回此范围内的元素数量。

句法

int size()

参数

没有任何

返回值

返回范围的大小。

以下是此方法的使用示例 -

class Example { 
   static void main(String[] args) { 
      // Example of an Integer using def 
      def rint = 1..10; 
      println(rint.size()); 
   } 
}

当我们运行上面的程序时,我们将得到以下结果 -

10
groovy_ranges.htm