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


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


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

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

    目录



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

  • 相关阅读:
    MySQL 对于千万级的大表要怎么优化?
    随便写的一些docker使用操作命令
    零基础学python大概要多久?我用了30天
    普通人学python有意义吗?意义重大
    华为私有云组件
    Mysql 调优(二)分析思路
    MySQL 调优(一)调优原则
    shell脚本获取当前时间,分钟之前时间、小时之前时间和天之前时间
    java_windows环境变量自动设置脚本
    plsql中文乱码问题解决方案
  • 原文地址:https://www.cnblogs.com/raylee2007/p/4944484.html
Copyright © 2011-2022 走看看