work hard work smart

专注于Java后端开发。 不断总结,举一反三。
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

Java 自动装箱/拆箱

Posted on 2019-05-22 15:35  work hard work smart  阅读(140)  评论(0编辑  收藏  举报

自动装箱/拆箱大大方便了基本类型(8个基本类型)数据和它们包装类的使用

自动装箱 : 基本类型自动转为包装类(int >> Integer)

自动拆箱: 包装类自动转为基本类型(Integer >> int)

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