更新时间:2022-06-22 12:13:40 来源:极悦 浏览1008次
这些运算符用于执行逻辑“与”、“或”和“非”运算,即类似于数字电子学中的与门和或门的功能。它们用于组合两个或多个条件/约束或补充在特定考虑下对原始条件的评估。要记住的一件事是,如果第一个条件为假,则不会评估第二个条件,即它具有短路效应。广泛用于测试做出决定的几个条件。让我们详细了解每个逻辑运算符:
当考虑的两个条件都满足或为真时,此运算符返回真。如果两者之一产生假,则运算符的结果为假。例如,当 cond1 和 cond2 都为真(即非零)时, cond1 && cond2 返回真。
句法:
条件1 && 条件2
插图:
a = 10, b = 20, c = 20
条件1:a < b
条件2:b == c
如果(条件1 && 条件2)
d = a+b+c
// 因为两个条件都为真
d = 50。
例子
// Java code to illustrate
// logical AND operator
import java.io.*;
class Logical {
public static void main(String[] args)
{
// initializing variables
int a = 10, b = 20, c = 20, d = 0;
// Displaying a, b, c
System.out.println("Var1 = " + a);
System.out.println("Var2 = " + b);
System.out.println("Var3 = " + c);
// using logical AND to verify
// two constraints
if ((a < b) && (b == c)) {
d = a + b + c;
System.out.println("The sum is: " + d);
}
else
System.out.println("False conditions");
}
}
输出:
变量 1 = 10
变量 2 = 20
变量 3 = 20
总和是:50
现在在下面的例子中,我们可以看到短路效应。这里当执行到 if 语句时,if 语句中的第一个条件为假,因此永远不会检查第二个条件。因此 ++b(b 的预增量)永远不会发生并且 b 保持不变。
例子:
/*package whatever //do not write package name here */
import java.io.*;
class shortCircuiting {
public static void main (String[] args) {
// initializing variables
int a=10,b=20,c=15;
// displaying b
System.out.println("Value of b : "+b);
// Using logical AND
// Short-Circuiting effect as the first condition is false so the second condition is never reached and
// so ++b(pre increment) doesn't take place and value of b remains unchanged
if((a>c) && (++b>c)){
System.out.println("Inside if block");
}
// displaying b
System.out.println("Value of b : "+b);
}
}
输出:
当考虑的两个条件之一满足或为真时,此运算符返回真。如果两者中的任何一个都为真,则运算符的结果为真。要使结果为假,两个约束都需要返回假。
句法:
条件1 || 条件2
例子:
a = 10, b = 20, c = 20
条件1:a < b
条件2:b > c
如果(条件1 || 条件2)
d = a+b+c
// 因为其中一个条件为真
d = 50。
// Java code to illustrate
// logical OR operator
import java.io.*;
class Logical {
public static void main(String[] args)
{
// initializing variables
int a = 10, b = 1, c = 10, d = 30;
// Displaying a, b, c
System.out.println("Var1 = " + a);
System.out.println("Var2 = " + b);
System.out.println("Var3 = " + c);
System.out.println("Var4 = " + d);
// using logical OR to verify
// two constraints
if (a > b || c == d)
System.out.println("One or both"
+ " the conditions are true");
else
System.out.println("Both the"
+ " conditions are false");
}
}
输出:
变量 1 = 10
变量 2 = 1
变量 3 = 10
变量 4 = 30
一个或两个条件都为真
与前两个不同,这是一个一元运算符,当考虑的条件不满足或为假条件时返回真。基本上,如果条件为假,则操作返回真,当条件为真时,操作返回假。
句法:
!(健康)状况)
例子:
a = 10, b = 20
!(a<b) // 返回 false
!(a>b) // 返回真
// Java code to illustrate
// logical NOT operator
import java.io.*;
class Logical {
public static void main(String[] args)
{
// initializing variables
int a = 10, b = 1;
// Displaying a, b, c
System.out.println("Var1 = " + a);
System.out.println("Var2 = " + b);
// Using logical NOT operator
System.out.println("!(a < b) = " + !(a < b));
System.out.println("!(a > b) = " + !(a > b));
}
}
输出:
变量 1 = 10
变量 2 = 1
!(a < b) = 真
!(a > b) = 假
以上就是关于“带有示例的Java逻辑运算符介绍”,大家如果对此比较感兴趣,想了解更多相关知识,可以关注一下极悦的Java逻辑运算符,里面有更详细的介绍等着大家去了解,希望对大家的学习能够有所帮助。
0基础 0学费 15天面授
Java就业班有基础 直达就业
业余时间 高薪转行
Java在职加薪班工作1~3年,加薪神器
工作3~5年,晋升架构
提交申请后,顾问老师会电话与您沟通安排学习