分配中的用法(有條件)
def results = []
(1..4).each{
def what = (it%2) ? 'odd' : 'even'
results << what
}
assert results == ['odd', 'even', 'odd', 'even']
在這裡,if-condition(在 (parentheses)
中)比僅僅測試存在/ Groovy-Truth 稍微複雜一些。
def results = []
(1..4).each{
def what = (it%2) ? 'odd' : 'even'
results << what
}
assert results == ['odd', 'even', 'odd', 'even']
在這裡,if-condition(在 (parentheses)
中)比僅僅測試存在/ Groovy-Truth 稍微複雜一些。