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

    xiaoxiao2025-11-20  29

    1.定义

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

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

    相关资源:python入门教程(PDF版)
    最新回复(0)