groovy-真值

简介:

Boolean expressions

Groovy支持标准的条件运算符的布尔表达式:

1 def a = true
2 def b = true
3 def c = false
4 assert a
5 assert a && b
6 assert a || c
7 assert !c

此外,Groovy中有强制转换非布尔对象为布尔值的特殊规则。

集合

空集合会被强制转换为false:

1 def numbers = [1,2,3]
2 assert numbers //true, as numbers in not empty
3 numbers = []
4 assert !numbers //true, as numbers is now an empty collection

迭代器和枚举

没有进一步元素的枚举和迭代器都会被强制转换为false:

1 assert ![].iterator() // false because the Iterator is empty
2 assert [0].iterator() // true because the Iterator has a next element
3 def v = new Vector()
4 assert !v.elements() // false because the Enumeration is empty
5 v.add(new Object())
6 assert v.elements() // true because the Enumeration has more elements

Map

非空的map被强制转换为true:

1 assert ['one':1]
2 assert ![:]

Matchers

当匹配到正则表达式的模式的时候会强制转换为true:

1 assert ('Hello World' =~ /World/) //true because matcher has at least one match

Strings

非空的Strings, GStrings 和CharSequences 将被强制转换为true:

1 <div>
2 <div>
3 <pre><code data-result="[object Object]">// Strings
4 assert 'This is true'
5 assert !''
6 //GStrings
7 def s = ''
8 assert !("$s")
9 s = 'x'
10 assert ("$s")

 

Numbers

非0的数值被强制转换为true,就如同perl一样。

1 <div>
2 <div>
3 <pre><code data-result="[object Object]">assert !0 //yeah, 0s are false, like in Perl
4 assert 1  //this is also true for all other number types

 

Object references

非null的对象引用被强制转换为true:

1 assert new Object()
2 assert !null
目录
相关文章
|
6月前
|
Python
python一元运算符的应用
【4月更文挑战第12天】Python的一元运算符包括正号(+), 负号(-), 按位取反(~), 取绝对值(abs())和类型转换(int(), float(), str())。例如:`+a`使数值变正,`-a`变为负数,`~a`为按位取反,`abs(a)`获取绝对值,而`int(a)`, `float(a)`, `str(a)`则用于类型转换。示例代码展示了这些运算符的使用效果。
55 0
|
3月前
|
Kotlin
Kotlin 运算符详解:算术、赋值、比较与逻辑运算符全解析
## Kotlin 运算符 - **用途**: 对变量和值执行操作。 - **示例**: ```kotlin var x = 100 + 50 // 150 ``` - **分类**: - **算术**: `+`, `-`, `*`, `/`, `%`, `++`, `--`. - **赋值**: `=`, `+=`, `-=`. - **比较**: `==`, `!=`, `&lt;`, `&gt;`, `&lt;=`, `&gt;=`. - **逻辑**: `&&`, `||`, `!`.
30 2
|
5月前
|
Kotlin
Kotlin中的算数运算符
Kotlin中的算数运算符
|
6月前
|
存储 Python 容器
Python系列(12)—— 一元运算符
Python系列(12)—— 一元运算符
|
6月前
|
存储 C语言
C 语言——表达式
C 语言——表达式
43 0
|
6月前
|
Python
详解 Python 的二元算术运算,为什么说减法只是语法糖?
详解 Python 的二元算术运算,为什么说减法只是语法糖?
48 0
|
自然语言处理 Java
Antlr实现任意四则运算表达式求值
上面语法就是四则运算的巴科斯范式定义(EBNF),可能对初学者有点难理解,其实就是一个递归定义,一个表达式可能是有多个子表达式构成,但子表达式的尽头一定是数字。 antlr可以用EBNF所定义的规则,将某个输入串解析为一颗抽象语法树(AST)。我们以表达式((3+3)*(1+4))/(5-3) 为例
165 0
|
Java
Groovy - 操作符之 “<<”
Groovy - 操作符之 “<<”
199 0
Python——变量的使用和算数运算符
Python——变量的使用和算数运算符