5W2H问题分析法

背景 5W2H分析法由第二世界大战中美国陆军兵器修理部首创。它简单、方便,易于理解、使用,被广泛用于企业管理和技术活动,对于决策和执行性的活动...

2023-04-06 · 3 min · 1401 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

Java Map

本文主要介绍Map接口以及其主要实现类:HashMap、LinkedHashMap、TreeMap、Hashtable、Properties...

2023-02-11 · 8 min · 3777 words · luolin