Java包装类

戏子无情 提交于 2020-02-08 18:39:46

Java数据类型

Java数据类型

包装类

Java API

基本数据类型和包装类的转换

  1. 自动装箱

    int t1 = 2;
    Integer t2 = t1;
    
  2. 手动装箱

    Integer t3 = new Integer(t1);
    
  3. 自动拆箱

    int t4 = t2;
    
  4. 手动拆箱

    int t5 = t2.intValue();
    

基本数据类型和字符串的转换

  1. Integer.toString() 基本数据类型转字符串

    int t1 = 2;
    String t2 = Integer.toString(t1);
    
  2. Integer.parseInt() 字符串转基本数据类型

    String t2 = "2";
    int t3 = Integer.parseInt(t2);
    
  3. Integer.valueOf() 先将String对象转换成integer对象,Integer对象自动转换成int

    String t2 = "2";
    int t4 = Integer.valueOf(t2);
    

基本数字类型的初始值

数据类型 默认值
byte 0
short 0
int 0
long 0L
double 0.0d
char ‘\u0000’
boolean false

几个知识点

  1. 当-128<数字<127 Integer t= 100;虚拟机会从缓存区取对象,若没有对象则会产生一个对象。
Integer t1 = 100;
Integer t2 = 100;
System.out.println(t1==t2);
/*true*/
  1. 8种基本数据类型对应的包装类,除了float和double其他都可以应用对象常量池概念。
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!