1 Star 0 Fork 0

dragon/python5

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
threading_test.py 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
碎ping子 提交于 2015-04-27 23:14 . 多线程实例
# encoding: utf-8
__author__ = 'zhanghe'
import time
import threading
def loop():
"""
新线程执行的代码
:return:
"""
print 'thread %s is running...' % threading.current_thread().name
n = 0
while n < 5:
n += 1
print 'thread %s >>> %s' % (threading.current_thread().name, n)
time.sleep(1)
print 'thread %s ended.' % threading.current_thread().name
if __name__ == '__main__':
# 多线程实例 启动一个线程就是把一个函数传入并创建Thread实例,然后调用start()开始执行
print time.ctime()
print 'thread %s is running...' % threading.current_thread().name
t = threading.Thread(target=loop, name='LoopThread')
t.start()
t.join()
print 'thread %s ended.' % threading.current_thread().name
print time.ctime()
# 运行结果:
# Mon Apr 27 23:04:31 2015
# 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.
# Mon Apr 27 23:04:36 2015
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/dragon-teng140806/python5.git
[email protected]:dragon-teng140806/python5.git
dragon-teng140806
python5
python5
master

搜索帮助