- Rust 教程
- 铁锈 - 主页
- Rust - 简介
- Rust - 环境设置
- Rust - HelloWorld 示例
- Rust - 数据类型
- Rust - 变量
- 铁锈 - 恒定
- Rust - 字符串
- Rust - 运算符
- Rust - 决策
- 铁锈 - 循环
- Rust - 函数
- Rust - 元组
- Rust - 数组
- Rust - 所有权
- Rust - 借用
- 铁锈 - 切片
- Rust - 结构
- Rust - 枚举
- Rust - 模块
- Rust - 收藏
- Rust - 错误处理
- Rust - 泛型类型
- Rust - 输入输出
- Rust - 文件输入/输出
- Rust - 包管理器
- Rust - 迭代器和闭包
- Rust - 智能指针
- Rust - 并发
- Rust 有用的资源
- Rust - 快速指南
- Rust - 有用的资源
- Rust - 讨论
Rust - 关系运算符
关系运算符测试或定义两个实体之间的关系类型。关系运算符用于比较两个或多个值。关系运算符返回一个布尔值 - true 或 false。
假设A的值为10,B的值为20。
先生编号 | 操作员 | 描述 | 例子 |
---|---|---|---|
1 | > | 比...更棒 | (A > B) 为假 |
2 | < | 小于 | (A < B) 为真 |
3 | >= | 大于或等于 | (A >= B) 为假 |
4 | <= | 小于或等于 | (A <= B) 为真 |
5 | == | 平等 | (A == B) 为假 |
6 | != | 不等于 | (A != B) 为真 |
插图
fn main() { let A:i32 = 10; let B:i32 = 20; println!("Value of A:{} ",A); println!("Value of B : {} ",B); let mut res = A>B ; println!("A greater than B: {} ",res); res = A<B ; println!("A lesser than B: {} ",res) ; res = A>=B ; println!("A greater than or equal to B: {} ",res); res = A<=B; println!("A lesser than or equal to B: {}",res) ; res = A==B ; println!("A is equal to B: {}",res) ; res = A!=B ; println!("A is not equal to B: {} ",res); }
输出
Value of A:10 Value of B : 20 A greater than B: false A lesser than B: true A greater than or equal to B: false A lesser than or equal to B: true A is equal to B: false A is not equal to B: true
rust_operators.htm