kenchan14

导航

2022年3月7日 #

面试题整理

摘要: 说?下 spring 的事务隔离? https://zhuanlan.zhihu.com/p/147372839 spring 有五?隔离级别,默认值为 ISOLATION_DEFAULT(使?数据库的设置),其他四个隔离级别和 数据库的隔离级别?致: ISOLATION_DEFAULT:?底层数据 阅读全文

posted @ 2022-03-07 16:31 kenchan14 阅读(41) 评论(0) 推荐(0) 编辑

单词

摘要: prevail suffice worship 阅读全文

posted @ 2022-03-07 14:25 kenchan14 阅读(5) 评论(0) 推荐(0) 编辑

泛型通用池

摘要: https://commons.apache.org/proper/commons-pool/examples.html 可用作<ftpClient> 连接池 import java.io.Reader; import java.io.IOException; public class Reader 阅读全文

posted @ 2022-03-07 14:15 kenchan14 阅读(40) 评论(0) 推荐(0) 编辑

时间复杂度

摘要: ![](https://img2022.cnblogs.com/blog/2251597/202203/2251597-20220307112828855-1575086006.png) ![](https://img2022.cnblogs.com/blog/2251597/202203/2251597-20220307112840895-866207098.png) 阅读全文

posted @ 2022-03-07 11:29 kenchan14 阅读(20) 评论(0) 推荐(0) 编辑

hashmap 1.8原理解析

摘要: https://blog.csdn.net/zjxxyz123/article/details/81111627 JDK 8 以前 HashMap 的实现是 数组+链表 很难达到元素百分百均匀分布。 1.8 中引入了红黑树(查找时间复杂度为 O(logn))数组+链表+红黑树 链表节点 Node , 阅读全文

posted @ 2022-03-07 10:34 kenchan14 阅读(93) 评论(0) 推荐(0) 编辑