传播运算符

在大多数情况下,传播运算符*. 与调用 .collect { it.________ } 相同。

def animals = ['cat', 'dog', 'fish']
assert animals*.length() == animals.collect { it.length() }

但如果主题为 null,则它们的行为有所不同:

def animals = null
assert animals*.length() == null
assert animals.collect { it.length() } == []