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是个实例方法,为什么类名可以调用使用方法
class TqChan(asyncio.Queue)继承asyncio.Queue类,在初始化时调用了asyncio.Queue.__init__(self, loop=api._loop), 网上有很多关于asyncio的教程哈,可以去参考学习学习