生活如麻 发表于 2018-8-8 07:36:13

Python3 多线程讲解

  前言
  Python3 线程中常用的两个模块为
  ·_thread
  ·threading(推荐使用)
  thread 模块已被废弃。用户可以使用 threading 模块代替。所以,在 Python3 中不能再使用”thread” 模块。为了兼容性,Python3 将 thread 重命名为 “_thread”。
  _thread
  Python中使用线程有两种方式:函数或者用类来包装线程对象。
  函数式:调用 _thread 模块中的start_new_thread()函数来产生新线程。语法如下:
  _thread.start_new_thread ( function, args[, kwargs] )1
  参数说明:
  ·function - 线程函数。
  ·args - 传递给线程函数的参数,他必须是个tuple类型。
  ·kwargs - 可选参数。
  1#!/usr/bin/python3
  2# -- coding: UTF-8 --
  3
  4# Python3 多线程
  5
  6import _thread
  7import time
  8import sys
  9
  10# 为线程定义一个函数
  11
  12def print_time(threadName,delay):
  13      count=0
  14   while count<5:
  15      time.sleep(delay)
  16      count+=1
  17   print(&quot;%s:%s&quot;%(threadName,time.ctime(time.time())))
  18
  19# 创建两个线程
  20try:
  21      _thread.start_new_thread(print_time,(&quot;Thread-1&quot;,2,))
  22      _thread.start_new_thread(print_time,(&quot;Thread-2&quot;,4,))
  23except:
  24   print(&quot;Error:无法启动线程&quot;,sys.exc_info())
  25
  26while 1:
  27   pass
  threading
  1#!/usr/bin/python3
  2# -- coding: UTF-8 --
  3
  4# python3 多线程
  5
  6import threading
  7import time
  8
  9exitFlag=0
  10
  11def print_time(threadName,delay,counter):
  12   while counter:
  13      if exitFlag:
  14            threadName.exit()
  15       time.sleep(delay)
  16      print(&quot;%s:%s&quot;%(threadName,time.ctime(time.time())))
  17      counter-=1
  18

  19 >  20    def init(self,threadID,name,counter):
  21      threading.Thread.init(self)
  22      self.threadID=threadID
  23      self.name=name
  24      self.counter=counter
  25    def run(self):
  26      print(&quot;线程开始:&quot;+self.name)
  27      print_time(self.name,self.counter,5)
  28       print(&quot;线程退出:&quot;+self.name)
  29
  30# 创建线程
  31thread1=myThread(1,&quot;Thread-1&quot;,1)
  32thread2=myThread(2,&quot;Thread-2&quot;,2)
  33
  34# 开始新线程
  35thread1.start()
  36thread2.start()
  37thread1.join()
  38thread2.join()
  39
  线程模块
  Python3 通过两个标准库 _thread 和 threading 提供对线程的支持。
  _thread 提供了低级别的、原始的线程以及一个简单的锁,它相比于 threading 模块的功能还是比较有限的。
  threading 模块除了包含 _thread 模块中的所有方法外,还提供的其他方法:
  ·threading.currentThread(): 返回当前的线程变量。
  ·threading.enumerate(): 返回一个包含正在运行的线程的list。正在运行指线程启动后、结束前,不包括启动前和终止后的线程。
  ·threading.activeCount(): 返回正在运行的线程数量,与len(threading.enumerate())有相同的结果。
  除了使用方法外,线程模块同样提供了Thread类来处理线程,Thread类提供了以下方法:
  ·run(): 用以表示线程活动的方法。
  ·start():启动线程活动。
  ·join(): 等待至线程中止。这阻塞调用线程直至线程的join() 方法被调用中止-正常退出或者抛出未处理的异常-或者是可选的超时发生。
  ·isAlive(): 返回线程是否活动的。
  ·getName(): 返回线程名。
  ·setName(): 设置线程名。
  原文:http://www.runoob.com/python3/python3-multithreading.html
页: [1]
查看完整版本: Python3 多线程讲解