关于协程coroutine的执行顺序问题

发布于 2022-09-06 09:33:18 字数 858 浏览 23 评论 0

import threading
import asyncio
import time

@asyncio.coroutine
def hello(n):
    print("-----")
    time.sleep(3)
    print("======")
    print(n,'Hello world! (%s)' % threading.currentThread())
    yield from asyncio.sleep(1) # 异步调用asyncio.sleep(1):  
    print(n,'Hello again! (%s)' % threading.currentThread())

loop = asyncio.get_event_loop()  # 获取EventLoop:
h1 = hello(1)
h2 = hello(2)
tasks = [h1,h2]
loop.run_until_complete(asyncio.wait(tasks)) # 执行coroutine
loop.close()

运行结果:

-----
======
2 Hello world! (<_MainThread(MainThread, started 4328)>)
-----
======
1 Hello world! (<_MainThread(MainThread, started 4328)>)
2 Hello again! (<_MainThread(MainThread, started 4328)>)
1 Hello again! (<_MainThread(MainThread, started 4328)>)

问题: 为什么 2 hello world 先被输出了??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜光 2022-09-13 09:33:18

异步,顺序是由操作系统决定啊, 是不一定的,你再运行一次没准就不一样了.

在我的机器上看到的是

$ python3 thread_test.py 
-----
======
1 Hello world! (<_MainThread(MainThread, started 140735704728384)>)
-----
======
2 Hello world! (<_MainThread(MainThread, started 140735704728384)>)
1 Hello again! (<_MainThread(MainThread, started 140735704728384)>)
2 Hello again! (<_MainThread(MainThread, started 140735704728384)>)

要想解释原因需要知道三个时间

一个时CPU切换上下文时间~1000ns
http://blog.tsunanet.net/2010...

一个是线程打印一个字符串的时间~100us
https://stackoverflow.com/que...

一个是CPU时间给每个线程的时间片~1ms
https://www.javamex.com/tutor...

整个过程执行时间很容易遇到线程上下文切换从而改变执行的先后顺序,但这个过程并不是随机的, 但同一台机器上很可能多次重复的都是同一种顺序.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文