首页 > 编程 > Python > 正文

Python自定义线程类简单示例

2020-01-04 15:24:58
字体:
来源:转载
供稿:网友

本文实例讲述了Python自定义线程类。分享给大家供大家参考,具体如下:

一. 代码

# -*- coding:utf-8 -*-#! python2import threadingclass mythread(threading.Thread):  def __init__(self, num):    threading.Thread.__init__(self)    self.num = num  def run(self):    print('I am {0}'.format(self.num))t1 = mythread(1)t2 = mythread(2)t3 = mythread(3)t1.start()t2.start()t3.start()

二. 运行结果

Python,自定义,线程类

 

希望本文所述对大家Python程序设计有所帮助。


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表