Mysql知识

Mysql 事务 事务的特性ACID 隔离级别 产生死锁的四个必要条件: (1) 互斥条件:一个资源每次只能被一个进程使用。 (2) 请求与保持条件:一个进程因请求...

2023-12-06 · 5 min · 2210 words · luolin

Java知识

Java基础 Java中的基本类型都有哪些 数字类型 4 种整数型:byte、short、int、long,int:4个字节 2 种浮点型:float、...

2023-12-06 · 15 min · 7325 words · luolin

设计模式

Java设计模式概述 设计模式(Design pattern)是软件开发人员在软件开发过程中面临的一般问题的解决方案模板,这些模板是经过相当长的...

2023-02-13 · 18 min · 8606 words · luolin

HashTable

什么是HashTable 对比其他数据结构,HashTable是一种典型的空间换时间思想的结构,大体思路就是创建一个数组,通过一个hash函数...

2023-02-11 · 2 min · 826 words · luolin

Java List

List接口 An ordered collection (also known as a sequence). The user of this interface has precise control over where in the list each element is inserted. The user can access elements by their integer index (position in the list), and search for elements in the list. 上面这段引用就是jdk8对List的定...

2023-02-11 · 4 min · 1704 words · luolin