- Groovy 教程
- Groovy - 首页
- Groovy - 概述
- Groovy - 环境
- Groovy - 基本语法
- Groovy - 数据类型
- Groovy - 变量
- Groovy - 运算符
- Groovy - 循环
- Groovy - 决策
- Groovy - 方法
- Groovy - 文件 I/O
- Groovy - 可选值
- Groovy - 数字
- Groovy - 字符串
- Groovy - 范围
- Groovy - 列表
- Groovy - 映射
- Groovy - 日期和时间
- Groovy - 正则表达式
- Groovy - 异常处理
- Groovy - 面向对象
- Groovy - 泛型
- Groovy - 特性
- Groovy - 闭包
- Groovy - 注解
- Groovy - XML
- Groovy - JMX
- Groovy - JSON
- Groovy - DSL
- Groovy - 数据库
- Groovy - 构建器
- Groovy - 命令行
- Groovy - 单元测试
- Groovy - 模板引擎
- Groovy - 元对象编程
- Groovy 有用资源
- Groovy - 快速指南
- Groovy - 有用资源
- Groovy - 讨论
Groovy - 关系运算符
关系运算符允许比较对象。以下是 Groovy 中可用的关系运算符:
运算符 | 描述 | 示例 |
---|---|---|
== | 测试两个对象之间的相等性 | 2 == 2 将返回 true |
!= | 测试两个对象之间的差异 | 3 != 2 将返回 true |
< | 检查左侧对象是否小于右侧操作数。 | 2 < 3 将返回 true |
<= | 检查左侧对象是否小于或等于右侧操作数。 | 2 <= 3 将返回 true |
> | 检查左侧对象是否大于右侧操作数。 | 3 > 2 将返回 true |
>= | 检查左侧对象是否大于或等于右侧操作数。 | 3 >= 2 将返回 true |
以下代码片段显示了如何使用各种运算符。
class Example { static void main(String[] args) { def x = 5; def y = 10; def z = 8; if(x == y) { println("x is equal to y"); } else println("x is not equal to y"); if(z != y) { println("z is not equal to y"); } else println("z is equal to y"); if(z != y) { println("z is not equal to y"); } else println("z is equal to y"); if(z<y) { println("z is less than y"); } else println("z is greater than y"); if(x<=y) { println("x is less than y"); } else println("x is greater than y"); if(x>y) { println("x is greater than y"); } else println("x is less than y"); if(x>=y) { println("x is greater or equal to y"); } else println("x is less than y"); } }
当我们运行上述程序时,我们将得到以下结果。可以看出,结果与上述运算符描述的预期一致。
x is not equal to y z is not equal to y z is not equal to y z is less than y x is less than y x is less than y x is less than y
groovy_operators.htm
广告