摘要: /** * 自动装箱与拆箱 */public class Autoboxing { public static void main(String[] args) { Integer num1 = 20; //自动装箱 int num2 = new Integer(20); //自动拆箱 ... 阅读全文
posted @ 2012-01-10 21:18 奋斗+坚持 阅读(141) 评论(0) 推荐(0) 编辑