05 2022 档案

摘要:https://zhuanlan.zhihu.com/p/346086161 https://tech.meituan.com/2020/04/02/java-pooling-pratice-in-meituan.html 阅读全文
posted @ 2022-05-23 20:31 西门长海 阅读(85) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/fen_fen/article/details/122909142 https://blog.csdn.net/vincent_duan/article/details/100880799 阅读全文
posted @ 2022-05-23 20:30 西门长海 阅读(30) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/caoleiwe/article/details/107904379 阅读全文
posted @ 2022-05-19 15:52 西门长海 阅读(14) 评论(0) 推荐(0) 编辑
摘要:list.sort 排序的值为null,导致Comparator.comparing排序报空指针异常: 当排序字段为null数据时,会报空指针异常,可以使用: Comparator.nullsLast(String::compareTo) 修改后: list.sort(Comparator.null 阅读全文
posted @ 2022-05-19 15:06 西门长海 阅读(2840) 评论(0) 推荐(0) 编辑
摘要:https://www.baeldung.com/java-hashcode 阅读全文
posted @ 2022-05-11 11:31 西门长海 阅读(16) 评论(0) 推荐(0) 编辑
摘要:https://mp.weixin.qq.com/s/WrAYKm60KEBS6UrfgwkVLw 阅读全文
posted @ 2022-05-11 11:23 西门长海 阅读(32) 评论(0) 推荐(0) 编辑
摘要:%c:输出一个字符。c 是 character 的简写。 %s:输出一个字符串。s 是 string 的简写。 %f:输出一个小数。f 是 float 的简写。 %hd:用来输出 short int 类型,hd 是 short decimal 的简写; %d:用来输出 int 类型,d 是 deci 阅读全文
posted @ 2022-05-07 13:19 西门长海 阅读(1655) 评论(0) 推荐(0) 编辑