调用方法

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()