Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java SE 有一个可扩展的Timer对象,它使用单个线程,允许大量并发调度任务(数千个应该没有问题)。它在内部使用二进制堆来表示其任务队列。
是否有 Python 等价物?标准或在非常流行的库中是可取的。
是的,看看sched模块。它也使用二进制堆(来自heapq)。