1. 程式人生 > >java-數字與字符串-習題

java-數字與字符串-習題

bubuko pre ima image 最大值 數字 轉換成 符號 float

自動裝箱

不需要調用構造方法,通過=符號自動把 基本類型 轉換為 類類型 就叫裝箱

  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-數字與字符串-習題