From 8f7572bf4c0b81b202d1265f3141c66c807f8055 Mon Sep 17 00:00:00 2001 From: many2many <6168830@qq.com> Date: Thu, 24 Oct 2024 09:48:36 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E6=B3=9B=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/chapter05.md | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/docs/chapter05.md b/docs/chapter05.md index 907ab93..4492461 100644 --- a/docs/chapter05.md +++ b/docs/chapter05.md @@ -543,22 +543,12 @@ Java 内置的 `List` 和 `Map` 类型都支持泛型,可以用来存储任意 List numbers = new ArrayList<>(); numbers.add(1); numbers.add(2); - numbers.add(3); - + Map scoreMap = new HashMap<>(); scoreMap.put("Alice", 90); scoreMap.put("Bob", 80); - scoreMap.put("Charlie", 70); ``` -#### 小结 - -- **类型安全**: 泛型可以确保类型在编译时得到验证,避免运行时的类型转换错误。 -- **代码重用**: 泛型允许编写通用的代码,提高代码的可重用性。 -- **性能提升**: 泛型可以减少不必要的类型转换,提高程序的运行效率。 - -通过使用泛型,开发者可以写出更加健壮、可读性强和易于维护的代码。 - ### 5.2 Spring框架简介(了解) #### 5.2.1 Spring框架的历史和发展