python创建多线程的两种方法

美女程序员鼓励师

当我们使用python编程的过程中需要多个输出的任务的话,为了能提高效率,可以使用多线程并行处理,那你知道如果穿件多线程使用吗?本文演示python创建多线程的两种方法:1、继承Thread类,并重写它的run()方法;2、用函数创建多线程。

方法一:继承Thread类,并重写它的run()方法

import time

from threading import Thread

class MyThread(Thread):

    def __init__(self, name='Python3'):

        super().__init__()

        self.name = name

    def run(self):

        for i in range(2):

            print("Hello", self.name)

            time.sleep(1)

注意:run()方法相当于第一种方法中的线程函数,可以写自己需要的业务逻辑代码,在start()后将会调用。

方法二:用函数创建多线程

在Python3中,Python提供了一个内置模块 threading.Thread,可以很方便地让我们创建多线程。

实例化threading.Thread对象时,将线程要执行的任务函数作为参数传入线程。

#-*- coding:utf-8 -*-

import thread

import time

def A(para):

    for i in range(5):

        print para

        time.sleep(0.5)

def B(para):

    for i in range(5):

        print para

        time.sleep(0.2)

if __name__ == '__main__':

    thread.start_new_thread(A, ('我是线程A',))

    thread.start_new_thread(B, ('我是线程B',))

    while 1:

        pass

以上就是python创建多线程的两种方法,大家选择其中一种方法使用即可。更多python学习推荐:python教程

以上是 python创建多线程的两种方法 的全部内容, 来源链接: utcz.com/z/542965.html

回到顶部