groovy
Spread Operator
Szukaj…
Uwagi
W większości przypadków operator rozkładania *.
jest identyczny z wywołaniem .collect { it.________ }
.
def animals = ['cat', 'dog', 'fish']
assert animals*.length() == animals.collect { it.length() }
Ale jeśli temat jest zerowy, zachowują się inaczej:
def animals = null
assert animals*.length() == null
assert animals.collect { it.length() } == []
Wywołanie metody
assert ['cat', 'dog', 'fish']*.length() == [3, 3, 4]
Zauważ, że podczas mieszania typów w kolekcji, jeśli metoda nie istnieje na niektórych elementach, może zostać groovy.lang.MissingMethodException
:
['cat', 'dog', 'fish',3]*.length()
// it throws groovy.lang.MissingMethodException: No signature of method: java.lang.Integer.length()
Dostęp do nieruchomości
class Vector {
double x
double y
}
def points = [
new Vector(x: 10, y: -5),
new Vector(x: -17.5, y: 3),
new Vector(x: -3.3, y: -1)
]
assert points*.x == [10, -17.5, -3.3]
Uwaga: *
jest opcjonalny. Możemy również napisać powyższą instrukcję, jak w poniższym wierszu, a kompilator Groovy nadal byłby z tego zadowolony.
assert points.x == [10, -17.5, -3.3]
Jest bezpieczny
Jeśli w kolekcji znajduje się obiekt o null
, nie zgłasza NPE
, zamiast tego zwraca null
:
assert ['cat', 'dog', 'fish', null]*.length() == [3, 3, 4, null]
Używanie go bezpośrednio w obiekcie o null
jest również bezpieczne pod względem NULL:
def nullCollection = null
assert nullCollection*.length() == null
Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow