记事本代码
/** * 动态调整数组的长度 */ public class AdjustArrayLength { private static int DEFAULT_LENGTH = 10; public static Integer[] increase(Integer[] src){ return increase(src, DEFAULT_LENGTH); } public static Integer[] increase(Integer[] src, int length){ if (src == null){ return null; } //新建一