• Java中基本类型和包装类比较的问题


    1、基本型和基本型封装型进行“==”运算符的比较,基本型封装型将会自动拆箱变为基本型后再进行比较,因此Integer(0)会自动拆箱为int类型再进行比较,显然返回true;
     
             int a = 220;
     
             Integer b = 220;
     
            System.out.println(a==b);//true
    2、两个Integer类型进行“==”比较, 如果其值在-128至127  ,那么返回true,否则返回false, 这跟Integer.valueOf()的缓冲对象有关,这里不进行赘述。
     
            Integer c=3;
     
            Integer h=3;
     
            Integer e=321;
     
            Integer f=321;
     
            System.out.println(c==h);//true
     
            System.out.println(e==f);//false
     
    3、两个基本型的封装型进行equals()比较,首先equals()会比较类型,如果类型相同,则继续比较值,如果值也相同,返回true。
     
            Integer a=1;
     
            Integer b=2;
     
            Integer c=3;
     
            System.out.println(c.equals(a+b));//true
     
    4、基本型封装类型调用equals(),但是参数是基本类型,这时候,先会进行自动装箱,基本型转换为其封装类型,再进行3中的比较。 
     
            int i=1;
     
            int j = 2;
     
            Integer c=3;
     
            System.out.println(c.equals(i+j));//true
  • 相关阅读:
    使用postman做接口测试(三)
    使用postman做接口测试(二)
    使用postman做接口测试(一)
    RobotFramework安装扩展库包autoitlibrary(四)
    RobotFramework安装扩展库包Selenium2Library(三)
    记录.gitattributes 设置合并时使用本地文件无效的解决方案
    golang 踩坑日记
    linux常用命令记录
    vim配置文件
    mysql case when记录
  • 原文地址:https://www.cnblogs.com/MoonASixpence/p/14893531.html
Copyright © 2020-2023  润新知