字串布林評估
如果不為 null 且不為空,則字串(包括 GStrings)的計算結果為 true;如果為 null 或為空,則為 false
def s = ''
...
if (s)
println 's is not empty'
else
println 's is empty'
將列印:’s 為空'
def s = ''
...
if (s)
println 's is not empty'
else
println 's is empty'
將列印:’s 為空'