From bc87612dae16cb9dd09adc59f88ef2619a58ffa8 Mon Sep 17 00:00:00 2001 From: Mars Liu Date: Thu, 7 Apr 2022 17:18:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E4=B8=A4=E4=B8=AA=E9=94=99?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../collection.md" | 4 ++-- .../9.\346\225\243\345\210\227\351\233\206/hashset.md" | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git "a/data/1.Java\345\210\235\351\230\266/7.\351\233\206\345\220\210/6.Java\351\233\206\345\220\210\346\241\206\346\236\266/collection.md" "b/data/1.Java\345\210\235\351\230\266/7.\351\233\206\345\220\210/6.Java\351\233\206\345\220\210\346\241\206\346\236\266/collection.md" index 3b0562f..385a758 100644 --- "a/data/1.Java\345\210\235\351\230\266/7.\351\233\206\345\220\210/6.Java\351\233\206\345\220\210\346\241\206\346\236\266/collection.md" +++ "b/data/1.Java\345\210\235\351\230\266/7.\351\233\206\345\220\210/6.Java\351\233\206\345\220\210\346\241\206\346\236\266/collection.md" @@ -4,7 +4,7 @@ ## 答案 -List和Set都是Collections的子类 +Set 是无序集合,因此没有实现 Collection 接口。 ## 选项 @@ -14,7 +14,7 @@ Map不是Collection的子类 ### C -ArrayList是无序列表 +ArrayList是基于 Resizable Array 的 List 实现。 ### D diff --git "a/data/1.Java\345\210\235\351\230\266/7.\351\233\206\345\220\210/9.\346\225\243\345\210\227\351\233\206/hashset.md" "b/data/1.Java\345\210\235\351\230\266/7.\351\233\206\345\220\210/9.\346\225\243\345\210\227\351\233\206/hashset.md" index e0b48f5..4dae396 100644 --- "a/data/1.Java\345\210\235\351\230\266/7.\351\233\206\345\220\210/9.\346\225\243\345\210\227\351\233\206/hashset.md" +++ "b/data/1.Java\345\210\235\351\230\266/7.\351\233\206\345\220\210/9.\346\225\243\345\210\227\351\233\206/hashset.md" @@ -4,17 +4,17 @@ ## 答案 -HashSet中的元素是有序的 +HashSet中的元素按它们被添加进来的顺序排列 ## 选项 ### A -HashSet的无参构造函数创建一个大小为16的容器,加载因子为0.75 +HashSet的无参构造函数创建一个空的集合,为其预分配必要的资源。 ### B -HashSet可以存储重复的元素 +调用 add 方法向集合中写入元素,会返回一个 bool 值,指示它是否是新元素。 ### D -- GitLab