java.util.concurrent.ConcurrentSkipListSet 基于跳跃链表的并发set

1.定义

public class ConcurrentSkipListSet<E> extends AbstractSet<E> implements NavigableSet<E>, Cloneable, java.io.Serializable {}

明显地,我们的元素需要实现 comparable<E> 接口。


你可能感兴趣的:(java.util.concurrent.ConcurrentSkipListSet 基于跳跃链表的并发set)