傳播運算子
在大多數情況下,傳播運算子*.
與呼叫 .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() } == []