上一页 1 2 3 4 5 6 7 8 9 10 ··· 26 下一页
摘要: https://zhuanlan.zhihu.com/p/149287061 阅读全文
posted @ 2021-09-13 23:24 DiligentCoder 阅读(74) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/weixin_30733003/article/details/98574063 阅读全文
posted @ 2021-07-31 15:51 DiligentCoder 阅读(59) 评论(0) 推荐(0)
摘要: 暂且这样记吧... java 对象数组以及非静态成员变量存在于堆中 java 类中的方法以及静态成员变量存在于方法区中 java 引用以及局部变量表在栈中 https://www.cnblogs.com/zhuxiaopijingjing/p/12272137.html 阅读全文
posted @ 2021-07-18 21:50 DiligentCoder 阅读(105) 评论(0) 推荐(0)
摘要: ![](https://img2020.cnblogs.com/blog/1504668/202107/1504668-20210717204410519-2040730187.png) 阅读全文
posted @ 2021-07-17 20:45 DiligentCoder 阅读(74) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/coding-one/p/12401630.html 阅读全文
posted @ 2021-07-16 23:53 DiligentCoder 阅读(134) 评论(0) 推荐(0)
摘要: @SpringBootApplication包含的三个注解及其含义 第一个:@SpringBootConfiguration(在这个类的源码中又有一个Configuration的注解) @Configuration这个注解的作用就是声明当前类是一个配置类,然后Spring会自动扫描到添加了@Conf 阅读全文
posted @ 2021-07-16 22:14 DiligentCoder 阅读(958) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/weixin_42759988/article/details/99665964 put方法的思路: 1.对 key 的 hashCode()做 hash,然后再计算 index; 2.如果没碰撞直接放到 bucket 里; 3.如果碰撞了,以链表的形式存 阅读全文
posted @ 2021-07-16 01:05 DiligentCoder 阅读(70) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/shangxinfeng/p/6754345.html 阅读全文
posted @ 2021-07-07 20:00 DiligentCoder 阅读(54) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_41915921/article/details/107530736 阅读全文
posted @ 2021-06-28 15:41 DiligentCoder 阅读(35) 评论(0) 推荐(0)
摘要: 脏读 :脏读就是指当一个事务正在访问数据,并且对数据进行了修改,而这种修改还没有提交到数据库中,这时,另外一个事务也访问这个数据,然后使用了这个数据。 e.g. 1.Mary的原工资为1000, 财务人员将Mary的工资改为了8000(但未提交事务) 2.Mary读取自己的工资 ,发现自己的工资变为 阅读全文
posted @ 2021-06-27 22:18 DiligentCoder 阅读(101) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 26 下一页