初识八大基本数据类型的包装类——Java面向对象基础(25)

Posted Unlimited_Rain

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了初识八大基本数据类型的包装类——Java面向对象基础(25)相关的知识,希望对你有一定的参考价值。

一、总括

 *    八大基本数据类型的包装类:将基本数据类型封装了类(引用类型)
 *    基本数据类型           包装类
 *    byte         --  Byte
 *    short        --  Short
 *    int          --  Integer
 *    long         --  Long
 *    float        --  Float
 *    double       --  Double
 *    char         --  Character
 *    boolean      --  Boolean

二、Integer的一些简单的使用

1.其包装类型与基本数据类型使用==比较时

 

 2.创建方式

        Integer integer1=1;
        Integer integer2=new Integer(1);

3.值转换

        Integer integer1;
        int a=1;
        String str="1";
//int转换为Integer integer1=a;
//Integer转换为int a=integer1.intValue(); a=integer1;//把Integer赋值给int型的话,JRE会自己完成这些工作.
//String转Integer integer1=Integer.valueOf(str);
//Integer转String str=integer1.toString();
//String-->int a=Integer.valueOf(str).intValue();//integer.valueOf(str)返回值是Integer型的. a=Integer.parseInt(str);//Integer.parseInt(str)返回值是int型的

 

以上是关于初识八大基本数据类型的包装类——Java面向对象基础(25)的主要内容,如果未能解决你的问题,请参考以下文章

阿里云名师课堂Java面向对象开发79 ~ 81:包装类

java 面向对象(十八):包装类的使用

Java基础知识(JAVA基本数据类型包装类)

Java基本数据类型与包装类型(转)

JAVA学习笔记-包装类

java包装类