01 2020 档案
摘要:ArrayList: 明确知道容量:直接设置初始容量,如new ArrayList<>(100)无法确定容量:预估一个比较接近的值,如果实在无法确定,则无需指定初始值 (有默认值)ArrayList没有加载因子,初始容量10,扩容增量为原来的0.5倍取整 HashMap(HashSet规则相同) H
阅读全文
摘要:/** * 将异常对象转为字符串。 * * @param ex 异常信息 * @return 字符串 */ public static String exceptionToString(Throwable ex) { //获取指定Throwable对象中最底层的Throwable Throwable lowerThrowable = getLowerThrowable(ex); //获取异常堆栈信
阅读全文