V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
imcocc
V2EX  ›  Python

使用 futures 遇到的疑惑

  •  
  •   imcocc · 2016-07-05 01:27:32 +08:00 · 2769 次点击
    这是一个创建于 2850 天前的主题,其中的信息可能已经有所发展或是发生改变。

    示例代码 python 2.7

    # -*- coding: utf-8 -*-
    from concurrent import futures
    
    def test(i):
       print i
    
    
    def mu():
       list=["a","b","c","d"]
    
       with futures.ThreadPoolExecutor(max_workers=2) as executor:
    
           future_tasks=dict((executor.submit(test, i), i)
                            for i in list)
           for future in futures.as_completed(future_tasks):
               print future.result()
    if __name__ == '__main__':
    
       mu()
    

    打印结果

    a
    b
    c
    d
    None
    None
    None
    None
    

    在学 python.照着官方文档写的, 疑惑的是 开 2 个 works, 第一个线程把 list 都打印了,第二个线程返回 none.

    不知道是哪里出错了 ? 请知道的朋友说一下。谢谢啦

    第 1 条附言  ·  2016-07-05 10:59:49 +08:00

    是我理解有误了,以为一个线程干了所有活,另一个啥都没做呢

    def test(i):
      print i
    
    改成 
    
    def test(i):
      time.sleep(10)
      print i
    
    

    就能发现,两个线程都在工作

    5 条回复    2016-07-05 10:53:07 +08:00
    justou
        1
    justou  
       2016-07-05 02:03:32 +08:00   ❤️ 1
    None 是两个线程中 test 的返回值, 两个线程都在抢着打印.
    py3 的 print 不是函数调用不报错?
    quxw
        2
    quxw  
       2016-07-05 09:57:21 +08:00   ❤️ 1
    a,b,c,d 是 test 里的 print

    test 又没有返回值,当然是 None 了
    mongost3t
        3
    mongost3t  
       2016-07-05 10:00:48 +08:00   ❤️ 1
    你 test 没返回数据, result()就是 None 了
    mongost3t
        4
    mongost3t  
       2016-07-05 10:01:12 +08:00
    咦楼上上……
    imcocc
        5
    imcocc  
    OP
       2016-07-05 10:53:07 +08:00
    @justou 这个是 python 2.7
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5808 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 32ms · UTC 06:24 · PVG 14:24 · LAX 23:24 · JFK 02:24
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.