标签: python python-3.x
我有这个:
import concurrent.futures
,然后使用类方法:
self.future = executor.submit(self.listen_for_messages)
使用JavaScript,我们必须将方法绑定到对象实例:
self.future = executor.submit(self.listen_for_messages.bind(self))
我们需要在Python中执行此操作吗?如果没有,为什么?