mirror of
https://gitee.com/many2many/java-web.git
synced 2025-01-11 22:50:54 +08:00
fix 泛型
This commit is contained in:
parent
ae4f7fcf79
commit
8f7572bf4c
@ -543,22 +543,12 @@ Java 内置的 `List` 和 `Map` 类型都支持泛型,可以用来存储任意
|
|||||||
List<Integer> numbers = new ArrayList<>();
|
List<Integer> numbers = new ArrayList<>();
|
||||||
numbers.add(1);
|
numbers.add(1);
|
||||||
numbers.add(2);
|
numbers.add(2);
|
||||||
numbers.add(3);
|
|
||||||
|
|
||||||
Map<String, Integer> scoreMap = new HashMap<>();
|
Map<String, Integer> scoreMap = new HashMap<>();
|
||||||
scoreMap.put("Alice", 90);
|
scoreMap.put("Alice", 90);
|
||||||
scoreMap.put("Bob", 80);
|
scoreMap.put("Bob", 80);
|
||||||
scoreMap.put("Charlie", 70);
|
|
||||||
```
|
```
|
||||||
|
|
||||||
#### 小结
|
|
||||||
|
|
||||||
- **类型安全**: 泛型可以确保类型在编译时得到验证,避免运行时的类型转换错误。
|
|
||||||
- **代码重用**: 泛型允许编写通用的代码,提高代码的可重用性。
|
|
||||||
- **性能提升**: 泛型可以减少不必要的类型转换,提高程序的运行效率。
|
|
||||||
|
|
||||||
通过使用泛型,开发者可以写出更加健壮、可读性强和易于维护的代码。
|
|
||||||
|
|
||||||
### 5.2 Spring框架简介(了解)
|
### 5.2 Spring框架简介(了解)
|
||||||
|
|
||||||
#### 5.2.1 Spring框架的历史和发展
|
#### 5.2.1 Spring框架的历史和发展
|
||||||
|
Loading…
Reference in New Issue
Block a user