Risposte:
C'è davvero un modo Groovier.
if(members){
//Some work
}
fa tutto se members
è una raccolta. Controllo nullo e controllo vuoto (le raccolte vuote sono obbligate a false
). Hail Groovy Truth . :)
members?.age.max()
esplode con "Impossibile richiamare il metodo max () su oggetto nullo" quando i membri sono nulli. Avresti bisogno dimembers?.age?.max()
List members = null;
e List members = [ [age: 12], [age: 24], [age: null], null ]
contro entrambe le soluzioni
!members.find()
Penso che ora il modo migliore per risolvere questo problema sia il codice sopra. Funziona da Groovy 1.8.1 http://docs.groovy-lang.org/docs/next/html/groovy-jdk/java/util/Collection.html#find () . Esempi:
def lst1 = []
assert !lst1.find()
def lst2 = [null]
assert !lst2.find()
def lst3 = [null,2,null]
assert lst3.find()
def lst4 = [null,null,null]
assert !lst4.find()
def lst5 = [null, 0, 0.0, false, '', [], 42, 43]
assert lst5.find() == 42
def lst6 = null;
assert !lst6.find()
Cordiali saluti, questo tipo di codice funziona (puoi trovarlo brutto, è un tuo diritto :)):
def list = null
list.each { println it }
soSomething()
In altre parole, questo codice ha controlli nulli / vuoti entrambi inutili:
if (members && !members.empty) {
members.each { doAnotherThing it }
}
def doAnotherThing(def member) {
// Some work
}