`
GhostFromheaven
  • 浏览: 394006 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

Python 多线程简单例子

阅读更多
http://blog.csdn.net/ghostfromheaven/article/details/7039310

import threading
import time

class MyThread(threading.Thread):
    def __init__(self, threadnum, max):
        threading.Thread.__init__(self)
        
        self.threadnum = threadnum
        
        if (max < 0 ):
            self.max = 0
        else:
            self.max = max
    def run(self):
        for x in xrange(self.max):
            print "thread-%d %d" % (self.threadnum, x)
            time.sleep(0.1);#sleep 100ms

MyThread(1, 10).start();#start the 1st thread
MyThread(2, 10).start();#start the 2nd thread
MyThread(3, 10).start();#start the 3rd thread


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics