Java-关系运算符
时间:2020-02-23 14:36:48 来源:igfitidea点击:
在本教程中,我们将学习Java编程语言中的关系运算符。
下面给出了Java中的6个关系运算符。
| 运算符 | 说明 |
|---|---|
| < | 小于 |
| <= | 小于或者等于 |
| > | 大于 |
| > = | 大于或者等于 |
| == | 等于 |
| != | 不等于 |
我们使用关系运算符比较两个值。
如果满足条件,那么我们就成立了。
否则为假。
小于
在下面的示例中,由于a <b,我们将得到" true"。
class Relational {
public static void main (String[] args) {
int a = 5;
int b = 10;
boolean result = a < b;
System.out.println("Result: " + result);
}
}
Result: true
小于或者等于
在下面的示例中,如果
class Relational {
public static void main (String[] args) {
int a = 5;
int b = 10;
boolean result = a <= b;
System.out.println("Result: " + result);
}
}
Result: true
大于
在下面的示例中,如果a> b,我们将得到true。
class Relational {
public static void main (String[] args) {
int a = 15;
int b = 10;
boolean result = a > b;
System.out.println("Result: " + result);
}
}
Result: true
大于或者等于
在下面的示例中,如果a> = b,我们将得到true。
class Relational {
public static void main (String[] args) {
int a = 15;
int b = 10;
boolean result = a >= b;
System.out.println("Result: " + result);
}
}
Result: true
等于
在下面的示例中,如果a == b,我们将得到" true"。
class Relational {
public static void main (String[] args) {
int a = 15;
int b = 15;
boolean result = a == b;
System.out.println("Result: " + result);
}
}
Result: true
不等于
在下面的示例中,如果a!= b,我们将得到" true"。
class Relational {
public static void main (String[] args) {
int a = 25;
int b = 15;
boolean result = a != b;
System.out.println("Result: " + result);
}
}
Result: true

