我正在阅读 Python 编程第 4 版。
以下是代码(Python3.2):
import _thread
def action(i):
print(i ** 32)
class Power:
def __init__(self, i):
self.i = i
def action(self):
print(self.i ** 32)
_thread.start_new_thread(action,(2,))
_thread.start_new_thread((lambda: action(2)), ())
obj = Power(2)
_thread.start_new_thread(obj.action,())
当我运行它时,屏幕上没有输出:
$python3 thread-example.py
$
有人对此有想法吗?