Groovy中的数字

Groovy中的数字就是对象,因而可以在数字上调用方法

def x = 3

def y = 4

assert x + y == 7

assert x.plus(y) == 7

....

 

你可能感兴趣的:(Groovy中的数字)