您的位置:首页 > 编程语言 > Java开发

从头认识java-2.4 逻辑运算符

2015-10-26 00:00 423 查看
这一章节我们来讨论一些逻辑运算符。

逻辑运算符:||、&&、!

注意点:

(1)使用逻辑运算符,其实就是运算符两侧的表达式先算出布尔值,然后再进行比较

package com.ray.ch01;

public class Test {

public static void main(String[] args) {
int b = 3, c = 2;
System.out.println((b > c) && (c > b));
System.out.println(test1(b, c) && test2(b, c));
}

private static boolean test1(int b, int c) {
System.out.println("test1");
return b > c;
}

private static boolean test2(int b, int c) {
System.out.println("test2");
return b < c;
}
}


输出:

false
test1
test2
false

上面的代码我给出两个等价的代码,这样大家会更加清楚中间的执行过程。

从输出结果可以看出,运算符两侧的表达式先运算,然后再计算两个布尔值的对比。

(2)短路现象。

我们把上面的代码改一下,把b和c 的值对换。

package com.ray.ch01;

public class Test {

public static void main(String[] args) {
int b = 2, c = 3;
System.out.println((b > c) && (c > b));
System.out.println(test1(b, c) && test2(b, c));
}

private static boolean test1(int b, int c) {
System.out.println("test1");
return b > c;
}

private static boolean test2(int b, int c) {
System.out.println("test2");
return b < c;
}
}


输出:

false
test1
false

从输出看到,test2没有被执行,因为test1返回false,那么注定了整个表达式test1&&test2返回肯定是false,无论test2执行与否,这个时候jvm进行优化,test2不再执行。

总结:这一章节我们主要讲述了逻辑运算符的注意点。

这一章节就到这里,谢谢。

-----------------------------------

目录

版权声明:本文为博主原创文章,未经博主允许不得转载。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  java