gpt4 book ai didi

如果列表为空,Python 会阻塞线程

转载 作者:太空宇宙 更新时间:2023-11-03 10:57:45 25 4
gpt4 key购买 nike

有没有办法让线程在列表为空时进入休眠状态,并在有项目时再次唤醒它?我不想使用队列,因为我希望能够索引到数据结构中。

最佳答案

是的,解决方案可能涉及 threading.Condition您在评论中注明的变量。

如果没有更多信息或代码片段,很难知道哪种 API 适合您的需求。你是如何生产新元素的?你如何消费它们?在基地,你可以做这样的事情:

cv = threading.Condition()
elements = [] # elements is protected by, and signaled by, cv

def produce(...):
with cv:
... add elements somehow ...
cv.notify_all()

def consume(...):
with cv:
while len(elements) == 0:
cv.wait()
... remove elements somehow ...

关于如果列表为空,Python 会阻塞线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38622284/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com