Python 技术篇-多线程的2种创建方法,多线程的简单用法,快速上手。

方法一:直接创建
hello是调用的方法名,hello如果要传参的话要放到后面的()里,并且后面要有个逗号,没有参数也要加个空的()。
缺点:不能自由操作线程,不好控制,不会返回对象。

import _thread

try:
	_thread.start_new_thread(hello, (s,))
except Exception as e:
	print(e)
	
def hello(s):
	...

方法二:通过对象来调用,间接创建
创建一个 myThread 对象继承多线程,创建一个对象就是一个新的线程。
把要运行的内容放到 run() 方法里。
优点:每个线程都可以单独控制。:可以灵活的控制线程 t 开始和暂停。

t = myThread()
t.start()   # 运行这个线程

class myThread(threading.Thread):
    def __init__(self):
        threading.Thread.__init__(self)
    def run(self):
        hello()

def hello():
	...

喜欢的点个赞❤吧!

posted on 2019-04-04 21:47  小蓝枣  阅读(77)  评论(0编辑  收藏  举报