在Python中通过threading模块定义和调用线程的方法

作者:磁针石 时间:2022-03-08 23:23:49 

定义线程

最简单的方法:使用target指定线程要执行的目标函数,再使用start()启动。

语法:


class threading.Thread(group=None, target=None, name=None, args=(), kwargs={})

group恒为None,保留未来使用。target为要执行的函数名。name为线程名,默认为Thread-N,通常使用默认即可。但服务器端程序线程功能不同时,建议命名。


#!/usr/bin/env python3
# coding=utf-8
import threading

def function(i):
 print ("function called by thread {0}".format(i))
threads = []

for i in range(5):
 t = threading.Thread(target=function , args=(i,))
 threads.append(t)
 t.start()
 t.join()

执行结果:


$ ./threading_define.py

function called by thread 0
function called by thread 1
function called by thread 2
function called by thread 3
function called by thread 4

确定当前线程


#!/usr/bin/env python3
# coding=utf-8

import threading
import time

def first_function():
 print (threading.currentThread().getName()+ str(' is Starting \n'))
 time.sleep(3)
 print (threading.currentThread().getName()+ str( ' is Exiting \n'))

def second_function():
 print (threading.currentThread().getName()+ str(' is Starting \n'))
 time.sleep(2)
 print (threading.currentThread().getName()+ str( ' is Exiting \n'))

def third_function():
 print (threading.currentThread().getName()+\
 str(' is Starting \n'))
 time.sleep(1)
 print (threading.currentThread().getName()+ str( ' is Exiting \n'))

if __name__ == "__main__":
 t1 = threading.Thread(name='first_function', target=first_function)
 t2 = threading.Thread(name='second_function', target=second_function)
 t3 = threading.Thread(name='third_function',target=third_function)
 t1.start()
 t2.start()
 t3.start()

执行结果:


$ ./threading_name.py

first_function is Starting
second_function is Starting
third_function is Starting
third_function is Exiting
second_function is Exiting
first_function is Exiting

配合logging模块一起使用:


#!/usr/bin/env python3
# coding=utf-8

import logging
import threading
import time

logging.basicConfig(
 level=logging.DEBUG,
 format='[%(levelname)s] (%(threadName)-10s) %(message)s',
 )

def worker():
 logging.debug('Starting')
 time.sleep(2)
 logging.debug('Exiting')

def my_service():
 logging.debug('Starting')
 time.sleep(3)
 logging.debug('Exiting')

t = threading.Thread(name='my_service', target=my_service)
w = threading.Thread(name='worker', target=worker)
w2 = threading.Thread(target=worker) # use default name
w.start()
w2.start()
t.start()

执行结果:


$ ./threading_names_log.py[DEBUG] (worker  ) Starting

[DEBUG] (Thread-1 ) Starting
[DEBUG] (my_service) Starting
[DEBUG] (worker  ) Exiting
[DEBUG] (Thread-1 ) Exiting
[DEBUG] (my_service) Exiting


在子类中使用线程

前面我们的线程都是结构化编程的形式来创建。通过集成threading.Thread类也可以创建线程。Thread类首先完成一些基本上初始化,然后调用它的run()。run()方法会会调用传递给构造函数的目标函数。


#!/usr/bin/env python3
# coding=utf-8

import logging
import threading
import time

exitFlag = 0

class myThread (threading.Thread):
 def __init__(self, threadID, name, counter):
   threading.Thread.__init__(self)
   self.threadID = threadID
   self.name = name
   self.counter = counter

def run(self):
   print ("Starting " + self.name)
   print_time(self.name, self.counter, 5)
   print ("Exiting " + self.name)

def print_time(threadName, delay, counter):
 while counter:
   if exitFlag:
     thread.exit()
   time.sleep(delay)
   print ("%s: %s" %(threadName, time.ctime(time.time())))
   counter -= 1

# Create new threads
thread1 = myThread(1, "Thread-1", 1)
thread2 = myThread(2, "Thread-2", 2)
# Start new Threads
thread1.start()
thread2.start()
print ("Exiting Main Thread")

执行结果:


$ ./threading_subclass.py

Starting Thread-1
Starting Thread-2
Exiting Main Thread
Thread-1: Tue Sep 15 11:03:21 2015
Thread-2: Tue Sep 15 11:03:22 2015
Thread-1: Tue Sep 15 11:03:22 2015
Thread-1: Tue Sep 15 11:03:23 2015
Thread-2: Tue Sep 15 11:03:24 2015
Thread-1: Tue Sep 15 11:03:24 2015
Thread-1: Tue Sep 15 11:03:25 2015
Exiting Thread-1
Thread-2: Tue Sep 15 11:03:26 2015
Thread-2: Tue Sep 15 11:03:28 2015
Thread-2: Tue Sep 15 11:03:30 2015
Exiting Thread-2

标签:Python,threading
0
投稿

猜你喜欢

  • Python tkinter库绘制春联和福字的示例详解

    2022-03-05 06:29:04
  • python实现名片管理器的示例代码

    2023-12-11 05:34:50
  • asp连接access数据库表代码实例

    2008-04-13 06:18:00
  • Linux 下 Python 实现按任意键退出的实现方法

    2022-08-07 14:22:01
  • 深入理解JavaScript系列(10) JavaScript核心(晋级高手必读篇)

    2024-04-22 13:24:54
  • python 中关于pycharm选择运行环境的问题

    2021-09-01 21:56:10
  • SQL SERVER 日志已满的处理方法

    2010-07-31 13:32:00
  • sqlserver合并DataTable并排除重复数据的通用方法分享

    2012-01-05 18:59:56
  • sqlserver 脚本和批处理指令小结

    2012-05-22 18:56:55
  • python抓取网页内容示例分享

    2022-04-25 19:02:56
  • 原生JavaScript实现的简单省市县三级联动功能示例

    2024-06-05 09:13:24
  • python获取当前文件路径以及父文件路径的方法

    2022-07-02 14:06:00
  • ASP.NET 2.0防止同一用户同时登录

    2007-10-03 14:30:00
  • js表格拖选动态效果COOL而实用

    2007-08-05 12:07:00
  • python中日志logging模块的性能及多进程详解

    2023-08-17 23:19:07
  • python制作websocket服务器实例分享

    2023-02-20 00:00:29
  • 详解win10下pytorch-gpu安装以及CUDA详细安装过程

    2023-07-01 07:21:36
  • vue中keep-alive组件的入门使用教程

    2023-07-02 16:38:51
  • 在Django的通用视图中处理Context的方法

    2023-02-25 20:50:45
  • asp读取数据库中数据到数组的类

    2007-09-16 18:19:00
  • asp之家 网络编程 m.aspxhome.com