3.25K 浏览
0
def send_nowait(self, item):

if not self.closed:
if self.last_only:
while not self.empty():
asyncio.Queue.get_nowait(self)
asyncio.Queue.put_nowait(self, item)

如上代码,Queue是个类名字,put_nowait是个实例方法,为什么类名可以调用使用方法

0
class TqChan(asyncio.Queue)继承asyncio.Queue类,在初始化时调用了asyncio.Queue.__init__(self, loop=api._loop),
 网上有很多关于asyncio的教程哈,可以去参考学习学习
您正在查看1个答案中的1个,单击此处查看所有答案。