Kotlin数据类型(二:装箱和拆箱)

时间:2020-12-22 17:27:13

蛮多人很疑惑,在Kotlin中,数据类型的装箱和拆箱怎么整
一、先看下Java中的装箱和拆箱
例如:

/** * @author:wangdong * @description: */
public class HelloWorldJava {

    public static void main(String[] args){

        int aInt = 5;
        Integer bInt = 5;

        System.out.println(aInt);
        System.out.println(bInt);
    }
}

二、在Kotlin中它会自动选择装箱和拆箱,所以在Kotlin就不用再考虑装箱和拆箱问题了。
是不是很惊喜。