方法一:直接创建 hello是调用的方法名,hello如果要传参的话要放到后面的()里,并且后面要有个逗号,没有参数也要加个空的()。 缺点:不能自由操作线程,不好控制,不会返回对象。
代码语言:javascript复制import _thread
try:
_thread.start_new_thread(hello, (s,))
except Exception as e:
print(e)
def hello(s):
...
方法二:通过对象来调用,间接创建 创建一个 myThread 对象继承多线程,创建一个对象就是一个新的线程。 把要运行的内容放到 run() 方法里。 优点:每个线程都可以单独控制。例:可以灵活的控制线程 t 开始和暂停。
代码语言:javascript复制t = myThread()
t.start() # 运行这个线程
class myThread(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
def run(self):
hello()
def hello():
...