codecamp

Groovy size()方法

返回此范围中的元素数。

句法

int size()

参数

没有

返回值

返回范围的大小。

下面是一个使用这个方法的例子 -

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

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

10
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定