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

自定义线程类

时间:2016-06-19 01:10:27      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

简单示例代码:

import threading

class MyThread(threading.Thread):
    def __init__(self,num):
        super(MyThread,self).__init__()
        self.num = num

    def run(self):
        print(self.num)

mt = MyThread(3)
mt.start()

  

自定义线程类

标签:

原文地址:http://www.cnblogs.com/owasp/p/5597253.html

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