java自动装箱和自动拆箱

package com.taobao.study;

public class ChaiDemo {
    public static void main(String[] args) {
        Integer a = 100; // 自动装箱
        int b = a +1; // 自动拆箱
        System.out.println(b);
    }
}
posted @ 2022-11-03 22:20  竹石2020  阅读(10)  评论(0编辑  收藏  举报