zoukankan      html  css  js  c++  java
  • 从头认识java-2.4 逻辑运算符

    这一章节我们来讨论一些逻辑运算符。

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

    注意点:

    (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不再执行。


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


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

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

    目录



    版权声明:本文为博主原创文章,未经博主允许不得转载。

  • 相关阅读:
    iOS的一些面试题分析总结(1)
    iOS的一些面试题分析总结(0)
    iOS页面间传值的一些方式总结
    自定义UIButton
    iOS查看3D效果的手势交互
    关于php得到参数数据
    ios安装ipa与安卓安装apk
    听说程序员想当就能当?
    W5100S、W5500、W5100差异对比
    annot read lifecycle mapping metadata for artifact org.apache.maven.plugins:maven-clean-plugin:maven
  • 原文地址:https://www.cnblogs.com/raylee2007/p/4944484.html
Copyright © 2011-2022 走看看