. Collection 接口和 Collections 类都是做什么用的 ?
**Collection:集合的抽象数据类型**
**Collections:包含有关集合操作的静态方法**
1. Collection 接口有几个子接口 ?Map 接口有父接口么 ?
3个 没有
2. List 、 Set 、 Map 三个接口有什么特点 ?
List:有序集合,可以精准的控制列表中每个元素的插入位置
Set:可以容纳所有类型的对象,包括null,不允许重复,实现类是无序的,TreeSet除外
Map:
1 每次存储 key-value对;
2 key部分不能重复
3 常用实现类HashMap和TreeMap
3. 请简述哈希表(散列表)
散列表(Hash table,也叫哈希表),是根据关键码值(Key value)而直接进行访问的数据结构。也就是说,它通过把关键码值映射到表中一个位置来访问记录,以加快查找的速度。这个映射函数叫做散列函数,存放记录的数组叫做散列表
4. 以下哪个集合接口支持通过字符串主键检索对象 A
A.Map
B.Set
C.List
D.Collection
5. 以下哪些语句用于创建一个Map实例? D
A.Map m = new Map();
B.Map m = new Map(init capacity,increment capacity);
C.Map m = new Map(new Collection());
D.以上均不行
6. 以下代码的执行结果是?
##### 执行结果
abc
def
def
----------------------------------
abc
def
```java
public class Example {
public static void main(String[] args) {
String s1 = "abc";
String s2 = "def";
String s3 = "def";
List<String> list = new ArrayList<String>();
list.add(s1);
list.add(s2);
list.add(s3);
for (String string : list) {
System.out.println( string );
}
System.out.println("-------------------");
Set<String> set = new HashSet<>();
set.add(s1);
set.add(s2);
set.add(s3);
for (String string : set) {
System.out.println( string );
}
}
}
```
1. 以下代码执行结果是?TreeMap和 HashMap 的区别是什么 ?
one=1three=3two=2 TreeMap有序 HashMap无序
```java
public class Example {
public static void main(String[] args) {
TreeMap<String, String> map = new TreeMap<String, String>();
map.put("one", "1");
map.put("two", "2");
map.put("three", "3");
displayMap(map);
}
static void displayMap(TreeMap map) {
Collection<String> c = map.entrySet();
Iterator<String> i = c.iterator();
while (i.hasNext()) {
Object o = i.next();
System.ou