码迷,mamicode.com
首页 > 编程语言 > 详细

python 线程使用

时间:2016-01-07 16:34:38      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

################# 线程演示脚本  #######################

#coding=utf-8
import threading
from time import ctime,sleep


def music(func):
    for i in range(2):
        print "I was listening to %s. %s" %(func,ctime())
        sleep(1)

def move(func):
    for i in range(2):
        print "I was at the %s! %s" %(func,ctime())
        sleep(5)

threads = []
t1 = threading.Thread(target=music,args=(u‘爱情买卖‘,))   # threading.Thread(function, args[, kwargs] )
threads.append(t1)
t2 = threading.Thread(target=move,args=(u‘阿凡达‘,))
threads.append(t2)

if __name__ == ‘__main__‘:
    for t in threads:
        t.setDaemon(True)  # 将线程声明为守护线程,当主线程结束是,如果子线程未结束则杀死子线程
        t.start()
    for t in thread:
        t.join()   # 子线程执行完成后,才可以接着往下执行主线程

    print "all over %s" %ctime()

################# 线程演示脚本  #######################

import threading
首先导入threading 模块,这是使用多线程的前提。

threads = []
t1 = threading.Thread(target=music,args=(u‘爱情买卖‘,))
threads.append(t1)
  创建了threads数组,创建线程t1,使用threading.Thread()方法,在这个方法中调用music方法target=music,args方法对music进行传参。 把创建好的线程t1装到threads数组中。
  接着以同样的方式创建线程t2,并把t2也装到threads数组。

for t in threads:
  t.setDaemon(True)
  t.start()
最后通过for循环遍历数组。(数组被装载了t1和t2两个线程)

setDaemon()
  setDaemon(True)将线程声明为守护线程,必须在start() 方法调用之前设置,如果不设置为守护线程程序会被无限挂起。子线程启动后,父线程也继续执行下去,当父线程执行完最后一条语句print "all over %s" %ctime()后,没有等待子线程,直接就退出了,同时子线程也一同结束。

start()
开始线程活动。

python 线程使用

标签:

原文地址:http://www.cnblogs.com/weiok/p/5109924.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!