# 方案1 from threading import Thread import time class Sayhi(Thread): def __init__(self,name): super().__init__() self.name=name def run(self): time.sleep(2) print(‘%s say hello‘ % self.name) if __name__ == ‘__main__‘: t = Sayhi(‘妹子‘) t.start() print(‘主线程‘)
# 方案2 from threading import Thread import time def sayhi(name): time.sleep(2) print(‘%s say hello‘ %name) if __name__ == ‘__main__‘: t=Thread(target=sayhi,args=(‘apollo‘,)) t.start() print(‘主线程‘)
原文地址:https://www.cnblogs.com/apollo1616/p/10206044.html
时间: 2024-11-01 12:48:46