gpt4 book ai didi

python - 协程本质上是一个类吗?

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

我正在按照说明学习协程

def grep(pattern):
print("Looking for %s" % pattern) # prime it(explain shortly)
while True:
line = (yield) # expression
if pattern in line:
print(line)

测试一下

>>> g = grep("python")
>>> g.next()
Looking for python
>>> g.send("coroutine test")
>>> g.send("learning python")

似乎 yield 表达式作为 functools.partial 执行,排除它应该使用 next() 启动

此时,def grep 实际上是一个class grep,因为它首先启动了一个生成器对象。

协同程序很难遵循,我对继续没有进一步副作用的正确方向的理解是因为 python 将其命名为 def 而不是 class 应该有她的理由.

最佳答案

It seems that a yield expression perform as a functools.partial, [except that] it should be primed using next().

我不确定具体是什么让你这么说,但我没有立即看到相似之处。 functools.parital 旨在将某些 args/kwargs 部分绑定(bind)到可调用对象,并让您保存其他一些 args/kwargs 以供用户调用。 (“partial() 用于部分函数应用程序,它‘卡住’函数参数和/或关键字的某些部分,从而产生具有简化签名的新对象。”)这并不是真正的问题使用此生成器或任何生成器。

The coroutine is tricky to follow, is my understanding on the right direction to continue without further side-effects since Python named it def rather than class?

他们很狡猾,同意你的看法。但我不确定我是否看到协程“本质上就像一个类”。协程是一种专门的生成器。生成器是用 def 定义的,并且能够暂停和恢复它们的执行。这描述的是生成器,而不是类,对于初学者来说,仅将 def 替换为 class 在语法上是无效的。

您可以想到像 a = yield b 这样的任何表达式的一种方法是标记一个断点。

当您调用 next(g) 时,它将继续前进,直到遇到 yield 语句,然后停在那里。它会将结果值推送到调用堆栈但是它会暂停执行并停在那里,当您再次对其调用next() 时可以恢复。 (这是函数和生成器之间以及函数和协程之间的关键区别,推而广之。)

在第一次调用 next() 时,lineNone。 (基本上,line = yield None。)您将无法对此进行迭代,因为您不能说for pattern in None。在这种情况下,“启动”的意思可能是指对 next(g) 的初始调用类似于 g.send(None)

现在,当您将其他值发送到生成器时,它们将被分配给 line,而 pattern 仍然是“python”。如果在 .send() 中找到“python”,它就会被打印出来。

>>> g = grep("python")
>>> n = g.send(None) # equiv to next(g); stop at line = (yield)
Looking for python
>>> n is None
True
>>> g.send("coroutine test")
>>> g.send("coroutine test")
>>> g.send("coroutine test") # no match
>>> g.send("learning python") # match
learning python
>>> g.send("python3.7") # match
python3.7

关于python - 协程本质上是一个类吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53131230/

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