Integer num = 15 和 Integer num = new Integer(15); 也有区别
class StrInt{/*Java中这样写: public static int[] ByNew() { int[] nums= new int[] { 1,2,3 }; return nums; }当然没问题,new出来的数组不用担心函数结束后内存被释放但是如果这样写呢: public static int[]