多线程写两个死循环
时间: 2023-07-01 15:18:29 浏览: 106
多线程死锁
5星 · 资源好评率100%
好的,以下是一个使用 Python 多线程模块编写的例子:
```python
import threading
def loop1():
while True:
print("Loop 1")
def loop2():
while True:
print("Loop 2")
t1 = threading.Thread(target=loop1)
t2 = threading.Thread(target=loop2)
t1.start()
t2.start()
```
这个例子中,我们定义了两个死循环函数 `loop1` 和 `loop2`,然后创建了两个线程 `t1` 和 `t2` 来同时运行这两个函数。通过 `start` 方法启动线程后,两个死循环会同时运行,并且不会相互影响。
阅读全文