05 2022 档案
摘要:https://zhuanlan.zhihu.com/p/346086161 https://tech.meituan.com/2020/04/02/java-pooling-pratice-in-meituan.html
阅读全文
摘要:https://blog.csdn.net/fen_fen/article/details/122909142 https://blog.csdn.net/vincent_duan/article/details/100880799
阅读全文
摘要:https://blog.csdn.net/caoleiwe/article/details/107904379
阅读全文
摘要:list.sort 排序的值为null,导致Comparator.comparing排序报空指针异常: 当排序字段为null数据时,会报空指针异常,可以使用: Comparator.nullsLast(String::compareTo) 修改后: list.sort(Comparator.null
阅读全文
摘要:https://www.baeldung.com/java-hashcode
阅读全文
摘要:https://mp.weixin.qq.com/s/WrAYKm60KEBS6UrfgwkVLw
阅读全文
摘要:%c:输出一个字符。c 是 character 的简写。 %s:输出一个字符串。s 是 string 的简写。 %f:输出一个小数。f 是 float 的简写。 %hd:用来输出 short int 类型,hd 是 short decimal 的简写; %d:用来输出 int 类型,d 是 deci
阅读全文