呼叫方法
assert ['cat', 'dog', 'fish']*.length() == [3, 3, 4]
請注意,如果在某些元素上不存在該方法,則在集合中混合型別時,可能會丟擲 groovy.lang.MissingMethodException
:
['cat', 'dog', 'fish',3]*.length()
// it throws groovy.lang.MissingMethodException: No signature of method: java.lang.Integer.length()