使用两种方式编写多线程程序?

Posted apollo1616

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用两种方式编写多线程程序?相关的知识,希望对你有一定的参考价值。

# 方案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(主线程)

 

以上是关于使用两种方式编写多线程程序?的主要内容,如果未能解决你的问题,请参考以下文章

多线程 Thread VS Runnable

两种多线程创建方式区别

Java_多线程

java-多线程创建

多线程

如何创建并运行java线程