网络编程
位置:首页>> 网络编程>> Python编程>> python 对类的成员函数开启线程的方法

python 对类的成员函数开启线程的方法

作者:zhongfuyu  发布时间:2021-09-11 17:12:42 

标签:python,成员函数,线程

如下所示:


# -*- coding: utf-8 -*-
import threading
import thread
import time

class Test(object):
 def __init__(self):
   # threading.Thread.__init__(self)
   self._sName = "machao"

def process(self):
   #args是关键字参数,需要加上名字,写成args=(self,)
   th1 = threading.Thread(target=Test.buildList, args=(self,))
   th1.start()
   th1.join()

def buildList(self):
   while True:
     print "start"
     time.sleep(3)

test = Test()
test.process()

来源:https://blog.csdn.net/zhongfuyu/article/details/78264869

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com