240 发简信
IP属地:上海
  • HashSet: 基于散列表的Set集合

    HashSet: 底层依靠 HashMap 来存储数据,例如 set.add("Hello World.")。允许存入 null 值;不允许重复...

  • Resize,w 360,h 240
    HashMap: 基于哈希表的映射接口

    HashMap: 底层使用 散列表 来存储数据,例如 map.put("name", "muqing")。键值对可以使用 null 值;Hash...

  • ArrayList: 基于动态数组的列表

    ArrayList: 底层使用数组来存储列表的元素,例如 a[i] = element。可重复且允许插入 null 值;数组默认初始容量值为10...