Groovy getTo()方法
获取此范围的上限值。
句法
Comparable getTo()
参数
没有
返回值
范围的上限值。
例子
下面是一个使用这个方法的例子 -
class Example { static void main(String[] args) { // Example of an Integer using def def rint = 1..10; println(rint.getTo()); } }
当我们运行上面的程序,我们将得到以下结果 -
10
获取此范围的上限值。
Comparable getTo()
没有
范围的上限值。
下面是一个使用这个方法的例子 -
class Example { static void main(String[] args) { // Example of an Integer using def def rint = 1..10; println(rint.getTo()); } }
当我们运行上面的程序,我们将得到以下结果 -
10