* HashSet源码笔记
```java
    // 构造器
    public HashSet() {
        map = new HashMap<>();
    }
```