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

py线程

时间:2018-12-14 12:52:43      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:最小   系统   操作   time   调度   sleep   thread   单元   共享内存   

"""
在一个进程的内部,要同时干多件事,就需要同时运行多个子任务,我们把进程内的子任务叫做线程。

线程通常叫做轻型的进程,线程是共享内存空间的并发执行的多任务,每一个线程都共享一个进程的资源。

线程是最小的执行单元,一个进程里至少有一个线程,如何调度进程和线程,完全由操作系统决定的,程序不能决定什么时候执行,执行多长时间。

模块
1. _thread模块 低级模块
2. threading模块 高级模块 对_thread进行了封装
"""

import threading
import time


def run(log):
print("子线程(%s)开始" % threading.current_thread().name)

print("打印 %d" % log)
time.sleep(2)

print("子线程(%s)结束" % threading.current_thread().name)


if __name__ == ‘__main__‘:
# 任何进程默认就会启动一个线程,称为住线程,主线程可以启动新的子线程
# 返回当前线程的实例
print("主线程(%s)启动" % threading.current_thread().name)

# 创建子线程
t = threading.Thread(target=run, name="runThread", args=(1,))
t.start()
t.join()

print("主线程(%s)结束" % threading.current_thread().name)

py线程

标签:最小   系统   操作   time   调度   sleep   thread   单元   共享内存   

原文地址:https://www.cnblogs.com/ioswws/p/10118081.html

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