Groovy学习笔记-布尔求值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Groovy学习笔记-布尔求值相关的知识,希望对你有一定的参考价值。

1.判断字符串为null或空字符串

def str = null
if(str)
    println ‘str is not null‘
else
    println ‘str is null‘

str = ‘‘
if(str)
    println ‘str is not null‘
else
    println ‘str is null‘

/*output
str is null
str is null
*/

2.集合是否为空或Count ==0

list = null
if(list)
    println ‘list is not null‘
else
    println ‘list is null‘

list = []
if(list)
    println ‘list is not null‘
else
    println ‘list is null‘

/*output
    list is null
    list is null
*/

3.集合新增元素

def list = [‘aaa‘];
list<<‘a‘

println list

 

以上是关于Groovy学习笔记-布尔求值的主要内容,如果未能解决你的问题,请参考以下文章

Groovy学习笔记读取CSV文件

《代码大全》阅读笔记-19-一般控制问题

Gradle学习笔记之Groovy

go语言学习十二 - 布尔表达式采用短路逻辑

学习笔记:python3,代码片段(2017)

Groovy学习笔记-使用多赋值