thread.start()
时间: 2023-09-06 09:13:39 浏览: 117
`thread.start()` 是 Python 中启动一个新线程的方法。它会在当前线程中创建一个新线程,并让新线程开始执行。使用该方法需要先创建一个 Thread 对象,并将要执行的函数作为参数传递给该对象的构造函数。例如:
```python
import threading
def my_func():
print("Hello, world!")
my_thread = threading.Thread(target=my_func)
my_thread.start()
```
在上面的代码中,我们首先定义了一个函数 `my_func`,然后创建了一个 Thread 对象 `my_thread`,并将 `my_func` 作为参数传递给了该对象的构造函数。最后调用 `my_thread.start()` 方法启动了新线程,使得函数 `my_func` 在新线程中执行。
阅读全文