自动装箱

java中自动装箱=>基本数据类型(int、long、char...)等基本的数据类型转换为其包装类型(Integer、String....);拆箱过程与装箱过程相反;

import java.util.ArrayList;
import java.util.Collection;

public class BoxTest {
    public static void main(String[] args) {
        int a = 3;
        
        Collection<Integer> c = new ArrayList<Integer>();
        
        c.add(new Integer(a));
        c.add(3); //将int类型的3转换为Integer类型并且放到集合当中
        c.add(a + 3);
        
        for(Integer i : c){
            System.out.println(i);
        }
    }
}

你可能感兴趣的:(自动)