240 发简信
IP属地:天津
  • HashMap

    存储一个key,value的键值对的集合 内部有三个成员集合 private transient SetkeySet; private tran...

  • PriorityQueue

    定义优先级队列,实现了AbstractQueue 优先队列跟普通的队列不一样,普通队列是一种遵循FIFO规则的队列,拿数据的时候按照加入队列的顺...

  • ArrayDeque:LinkedList

    ArrayDeque和LinkedList都实现了Deque双端队,从两端取值/添加/删除. ArrayDeque,内部有3个成员,object...

  • Interface Deque

    Deque interface Dequeextends Queue 定义:双端队列,double end queue,有两个端头的队列,继承了...

  • Interface Queue

    Queue队列继承了Collection接口,并扩展了队列相关方法 添加到队尾,取/删除从对头。 boolean add(E e); 复写,在队...

  • hashcode

    hashcode的定义 hashCode是jdk根据对象的地址或者字符串或者数字算出来的int类型的数值 public inthashCode(...

  • ArrayList:LinkedList

    ArrayList继承接口List,一个定长的List,可以动态的增长和缩减 内部有一个成员object数组,可以实现index索引,Objec...

  • Interface Set

    定义:A set is a data structure which does not allow duplicate elements. Se...

  • interface List

    它继承了Collection接口并且扩展了基于下标的随机访问的方法 基于下标的添加 public void add(int index,E ob...