一、所有的包装类(integer long byte double float short)都是抽象类Number的子类 public class Test{ public static void main(String args[]){ Integer x = 5; x = x + 10; System.out.println(x); } } 当x 被赋为整型值时,由于x是一个对象,所以编译器要对x进行装箱。然后,为了使x能进行加运算,所以要对x进行拆箱。 二、Number&Math类的方法 floor round ceil等等方法
原文:https://www.cnblogs.com/xiaoshubass/p/13110807.html