写一个多线程的类的例子,python代码
时间: 2023-02-12 09:51:37 浏览: 108
```python
import threading
class MyThread(threading.Thread):
def __init__(self, threadID, name, counter):
threading.Thread.__init__(self)
self.threadID = threadID
self.name = name
self.counter = counter
def run(self):
print("开始线程:" + self.name)
print_time(self.name, self.counter, 5)
print("退出线程:" + self.name)
def print_time(threadName, delay, counter):
while counter:
time.sleep(delay)
print("%s: %s" % (threadName, time.ctime(time.time())))
counter -= 1
# 创建新线程
thread1 = MyThread(1, "Thread-1", 1)
thread2 = MyThread(2, "Thread-2", 2)
# 开启新线程
thread1.start()
thread2.start()
print("退出主线程")
```
在这个例子中,我们定义了一个名为 MyThread 的类,它继承自 threading.Thread 类。 MyThread 类有三个参数:threadID,name 和 counter。在类的 __init__ 方法中,我们初始化线程,并将这三个参数赋值给类的属性。类还有一个 run 方法,它是线程的入口点,我们在这里调用了另一个函数 print_time。print_time 函数接收三个参数:threadName, delay 和 counter。在主程序中,我们创建了两个 MyThread 类的实例并启动了它们。
阅读全文