groovy空值判断

def a = null
if (!a)
    println('a is empty')

在groovy中null,false,”,0的布尔运算结果都是false,同样可以用!a进行反向判断

发表回复