呆鸟的Python数据分析PythonPython札记

Python札记52_进程和线程2

2019-07-27  本文已影响21人  皮皮大

在之前的札记Python札记50_进程和线程1中介绍了进程、线程和子进程以及多进程的相关知识,本札记中重点介绍多线程的知识。

仅供学习使用,感谢廖老师https://www.liaoxuefeng.com/wiki/1016959663602400/1017629247922688

如何启动一个线程?

启动一个线程就是把一个函数传入并创建Thread实例,然后调用start()开始执行
function--->创建Thread实例--->调用start()执行


import time, threading   # 导入计时和多线程模块

# 创建新的线程
def loop():
    print('Thread {0} is running...'.format(threading.current_thread().name))  # 输出当前线程的实例
    n = 0
    while n < 5:   # 输出次数
        n += 1
        print("Thread {0} >> {1}".format(threading.current_thread().name, n))  # 线程当前的实例
        time.sleep(3)   # sleep3秒
    print("thread {0}  ended...".format(threading.current_thread().name))   # 循环结束,所有的LoopThread线程结束

print("thread {0} is running...".format(threading.current_thread().name))   # 输出当前线程的实例
t = threading.Thread(target=loop, name="LoopThread")
t.start()
t.join()
print("thread {} ended.".format(threading.current_thread().name))

结果:

thread MainThread is running...
Thread LoopThread is running...
Thread LoopThread >> 1
Thread LoopThread >> 2
Thread LoopThread >> 3
Thread LoopThread >> 4
Thread LoopThread >> 5
thread LoopThread ended...
thread MainThread ended...

锁Lock
多进程和多线程最大的区别就在于:

上一篇 下一篇

猜你喜欢

热点阅读