Rust - Operatori relazionali
Gli operatori relazionali testano o definiscono il tipo di relazione tra due entità. Gli operatori relazionali vengono utilizzati per confrontare due o più valori. Gli operatori relazionali restituiscono un valore booleano, vero o falso.
Supponiamo che il valore di A sia 10 e B sia 20.
Suor n | Operatore | Descrizione | Esempio |
---|---|---|---|
1 | > | Più grande di | (A> B) è False |
2 | < | Minore di | (A <B) è vero |
3 | > = | Maggiore o uguale a | (A> = B) è False |
4 | <= | Minore o uguale a | (A <= B) è vero |
5 | == | Uguaglianza | (A == B) è falso |
6 | ! = | Non uguale | (A! = B) è vero |
Illustrazione
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);
}
Produzione
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