美文网首页
自动拆箱装箱

自动拆箱装箱

作者: ForeverYoung20 | 来源:发表于2015-10-13 10:31 被阅读52次

    jdk1.5新特性之自动装箱与自动拆箱

    Java是面向对象语言,任何事物都可以使用类进行描述,sun就使用了一些类描述Java中巴中基本数据类型。
    自动装箱:自动把Java的基本数据类型数据转换成对象类型数据。
    自动拆箱:把引用类型的数据类型转换成基本类型的数据。

    byte     Byte
    short    Short
    int      Integer
    long     Long
    
    float    Float
    double   Double
    
    boolean   Boolean
    
    char     Character
    
    自动装箱拆箱

    相关文章

      网友评论

          本文标题:自动拆箱装箱

          本文链接:https://www.haomeiwen.com/subject/fvsocttx.html