1.2.1 多线程介绍
线程是程序执行流的最小单元。
线程由线程id,当前计算机的指令指针,寄存器集合和堆栈组成。
线程是一个实体,被系统独立调度和分派的基本单位
1.2.2 线程模块
1.python3提供两个线程模块
1._thread提供了低级别,原始的线程以及一个简单的互斥锁
2.threading模块是_thread模块的替代,在实际开发中多用threading
import _thread
import time
# 为线程定义一个函数
def print_time( threadName, delay):
count = 0
while count < 5:
time.sleep(delay)
count += 1
print ("%s: %s" % ( threadName, time.ctime(time.time()) ))
# 创建两个线程
try:
_thread.start_new_thread( print_time, ("Thread-1", 2, ) )
_thread.start_new_thread( print_time, ("Thread-2", 4, ) )
except:
print ("Error: 无法启动线程")
while 1:
pass
2.Thread对象的主要方法说明