gpt4 book ai didi

python - 线程内的 print() 输出错误的值

转载 作者:行者123 更新时间:2023-12-03 13:15:50 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How do lexical closures work?

(10 个回答)


去年关闭。




我正在尝试重新创建一个称为 sleep 排序的愚蠢想法,但是输出远非预期。
我期待

0
1
2
3
5
但是我得到
0
5
5
5
5
...这很奇怪,因为线程会: sleep (item) 秒,然后打印该项目。
这是我的代码
import threading
import time

def sleepSort(lst):
for item in lst:
threading.Thread(target = lambda: (
time.sleep(item),
print(item)
)).start()

sleepSort([3, 0, 2, 1, 5])
我的代码有问题吗?非常感谢您!

最佳答案

这是许多语言的典型行为,由“后期绑定(bind)”引起。您应该明确传递参数以避免这种情况,并且还应该使用“python 后期绑定(bind)”之类的内容。

def sleepSort(lst):
for item in lst:
threading.Thread(target = lambda item: (
time.sleep(item),
print(item)
), args=(item, )).start()

关于python - 线程内的 print() 输出错误的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66410708/

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