java基本型別和物件之間的轉換

weixin_34148340發表於2018-05-11

package cn.insist;

/**

* @author Pandy

* @date 2018/5/11 21:51

*/

public class Demo23232 {

    public static void main(String[] args) {

        //構建一個新分配的integer物件,它表示指定的int值

        Integer i = new Integer(4);

        //表示String引數所指示的int值

        Integer ii = new Integer("4");//可以傳入有一個數字字串

        Integer iii = Integer.valueOf(4);

        //以int型別返回該integer值

        int num = i.intValue();

        System.out.println(num);

    }

}

相關文章