jdk1.6下 ConcurrentLinkedQueue 的add 和 offer一样了;add直接调用了offer方法。 public boolean add(E e) { return offer(e); }