码迷,mamicode.com
首页 > 编程语言 > 详细

java-数字与字符串-习题

时间:2018-04-26 19:56:13      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:分享   通过   intvalue   pre   类型   自动转换   自动装箱   img   装箱   

自动装箱

不需要调用构造方法,通过=符号自动把 基本类型 转换为 类类型 就叫装箱

  int i = 5;
 
        //基本类型转换成封装类型
        Integer it = new Integer(i); //装箱-》实质它做了这个操作
         
        //自动转换就叫装箱
        Integer it2 = i;

自动拆箱

       int i = 5;
  
        Integer it = new Integer(i);
          
        //封装类型转换成基本类型
        int i2 = it.intValue(); // 拆箱-》实质它做了这个操作
         
        //自动转换就叫拆箱
        int i3 = it;
          
    }

题目1

  1. 对byte,short,float,double进行自动拆箱和自动装箱
    技术分享图片

  2. byte和Integer之间能否进行自动拆箱和自动装箱

  3. 通过Byte获取byte的最大值

java-数字与字符串-习题

标签:分享   通过   intvalue   pre   类型   自动转换   自动装箱   img   装箱   

原文地址:https://www.cnblogs.com/czy16/p/8954432.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!