• Integert 与 int例子详解


    public final class Integerextends Numberimplements Comparable<Integer>

    Integer 类在对象中包装了一个基本类型 int 的值。Integer 类型的对象包含一个 int 类型的字段。

    此外,该类提供了多个方法,能在 int 类型和 String 类型之间互相转换,还提供了处理 int 类型时非常有用的其他一些常量和方法

    方法:

    public class IngegerorInt {
    
        public static void main(String[] args) {
            // TODO Auto-generated method stub
    
             System.out.println(Integer.MIN_VALUE);  //-2147483648
             System.out.println(Integer.MAX_VALUE); //2147483647
             System.out.println(Integer.SIZE);    //32
             System.out.println(Integer.BYTES);   //4
             System.out.println(Integer.TYPE);    //int
    
             int a1=2147483647;  //不在在规定范围内,报错:The literal xxx of type int is out of range 
             Integer b1=new Integer(2147483647);
             Integer b2=new Integer(2147483647);
             Integer c1=2147483647;
             Integer c2=2147483647;
             System.out.println(a1==b1); //true   MIN_VALUE-MAX_VALUE范围内为true
             System.out.println(a1==c1); //true
             System.out.println(b1==c1); //false
             System.out.println(b1==b2);  //false
             System.out.println(c1==c2);  //false
             System.out.println();
             System.out.println(b1.equals(a1)); //true   不能 int.equals(Integer)这样比较
             System.out.println(b1.equals(c1)); //true
             System.out.println(c1.equals(b1));  //true
             System.out.println(c1.equals(a1));  //true
             System.out.println();
             System.out.println(b1.equals(b1));  //true
             System.out.println(b1.equals(b2));  //true
             System.out.println(c1.equals(c1));   //true
             System.out.println(c1.equals(c2));   //true
        }
    
    }


  • 相关阅读:
    Huawei vlan 配置及vlan 间通讯
    Huawei DHCP 中继配置实例
    Huawei DHCP 全局配置与接口配置
    Cisco DHCP 配置方法
    VS Code的golang开发配置 之 代码提示
    天气服务API文档 第1版
    Android 让图片等比例缩放的三种方法
    Jar mismatch! Fix your dependencies
    android ActionBarSherlock使用说明
    Only the original thread that created a view hierarchy can touch its views.
  • 原文地址:https://www.cnblogs.com/tk55/p/8108282.html
Copyright © 2020-2023  润新知