python多线程死循环
时间: 2024-04-24 09:17:23 浏览: 215
多线程死锁问题
以下是一个使用Python多线程实现死循环的例子:
```python
import threading
def loop():
while True:
pass
# 创建两个线程并启动
thread1 = threading.Thread(target=loop)
thread2 = threading.Thread(target=loop)
thread1.start()
thread2.start()
```
上述代码中,我们定义了一个名为`loop`的函数,该函数包含一个无限循环`while True`。然后,我们使用`threading.Thread`类创建了两个线程,并将`loop`函数作为目标函数传递给线程对象。最后,我们分别启动了这两个线程。
这样,两个线程将同时执行`loop`函数中的死循环,实现了Python多线程的死循环操作。
阅读全文