当前位置:  开发笔记 > 编程语言 > 正文

为什么在map周围包装list()导致函数运行?

如何解决《为什么在map周围包装list()导致函数运行?》经验,为你挑选了1个好方法。

我试图解决的问题是映射多线程庄园中的函数列表.这些函数既可以打印出来,也可以返回值.这些返回值中的每一个都将存储在列表中.这是代码......

 import threading
 import time

 def PauseAndPrint1Seconds(num):
    time.sleep(1)
    print("Finished Pausing" + num)
    return [1]

 def PauseAndPrint2Seconds(num):
    time.sleep(2)
    print("Finished Pausing" + num)
    return [2, 2]

 def PauseAndPrint3Seconds(num):
    time.sleep(3)
    print("Finished Pausing" + num)
    return [3, 3, 3]

 def PauseAndPrint4Seconds(num):
    time.sleep(4)
    print("Finished Pausing" + num)
    return [4, 4, 4, 4]


 myfuncs = [PauseAndPrint1Seconds, PauseAndPrint2Seconds, PauseAndPrint3Seconds, PauseAndPrint4Seconds]

 result = [None] * len(myfuncs)

 def wrapFunc(i, num):
    result[i] = myfuncs[i](num)

 mythreads = [threading.Thread(target=wrapFunc, args = (i, " 12345")) for i in range(len(myfuncs))]

 map(lambda x: x.start(), mythreads)

 map(lambda x: x.join(), mythreads)

线程从未启动过,我得到了回复......

 >>> map(lambda x: x.start(), mythreads)
 


 >>> result
 [None, None, None, None]

如果我将map函数更改为简单循环,它似乎可以工作

>>> for x in mythreads:
...     x.start()

Finished Pausing 12345
Finished Pausing 12345
Finished Pausing 12345
Finished Pausing 12345

>>> result
[[1], [2, 2], [3, 3, 3], [4, 4, 4, 4]]

还奇怪的是,如果我用list()调用包装地图,确实无法正常工作的地图函数.

 >>> list(map(lambda x: x.start(), mythreads))
 [None, None, None, None]
 Finished Pausing 12345
 Finished Pausing 12345
 Finished Pausing 12345
 Finished Pausing 12345

 >>> result
 [[1], [2, 2], [3, 3, 3], [4, 4, 4, 4]]

包装事物的几个... 1.我是Python的新手很抱歉,如果我错过了一些基本的东西2.我知道有一个更简单的方法来做到这一点.这是我理解的问题.



1> John La Rooy..:

这是Python2和Python3之间的区别.

Python3返回一个地图对象,它记住了需要做什么(比如生成器),但是在你要求结果之前不做任何工作(从地图对象的结果创建一个列表就是一次性要求它们)

map在Python2中已经返回一个列表,因此类似于list(map(...))Python3

通常不会将Pythonic视为使用地图或列表理解仅仅是因为它们的副作用.如果您只使用了一个for循环,那么事情发生的时间就没有歧义

for x in mythreads:
    x.start()

推荐阅读
牛尾巴2010
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有