记事本代码

hbuzhs 29 0 JAVA 2019-01-12 22:01:39

/** * 动态调整数组的长度 */ 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; } //新建一

用户评论
请输入评论内容
评分:
暂无评论