|| Java中的运算符
||是一种逻辑运算符,读作“ OR OR ”或“ Logical OR ”。该运算符用于执行“逻辑或”运算,即类似于数字电子中的或门的函数。
要记住的一件事是,如果第一个条件为真,则不会评估第二个条件,即它具有短路效应。广泛用于测试做出决定的几个条件。
句法:
Condition1 || Condition2
// returns true if one of the conditions is true.
下面是一个例子来演示 ||运算符:
例子:
Java
// Java program to illustrate
// logical OR operator
import java.util.*;
public class operators {
public static void main(String[] args)
{
char ch = 'a';
// check if character is alphabet or digit
// using || operator
if (ch >= 65 && ch <= 90
|| ch >= 97 && ch <= 122)
System.out.println(
ch
+ " is an alphabet.");
else if (ch >= 48 && ch <= 57)
System.out.println(
ch
+ " is a digit.");
else
System.out.println(
ch
+ " is a special character.");
}
}
输出:
a is an alphabet.