Object a = 1; System.out.println(a+1);
报错:The operator + is undefined for the argument type(s) Object, int
必须是基本数据类型(数值类型的)才能运算.