Python Thread.is_alive() 方法
Thread.is_alive() 方法是 Python 中線程模塊的 Thread 類的內置方法。它使用一個 Thread 對象,並檢查該線程是否處於活動狀態,即它是否仍在運行。此方法在 run() 開始之前返回 True,直到 run() 方法執行之後。
模塊:
from threading import Thread
用法:
is_alive()
參數:
- None
返回值:
這個方法的返回類型是<class 'bool'>
, 它返回 True 是線程是活著的,否則返回 False 。
例:
# Python program to explain the
# use of is_alive() method
import time
import threading
def thread_1(i):
time.sleep(5)
print('Value by Thread 1:', i)
def thread_2(i):
print('Value by Thread 2:', i)
# Creating three sample threads
thread1 = threading.Thread(target=thread_1, args=(1,))
thread2 = threading.Thread(target=thread_2, args=(2,))
# Before calling the start(), both threads are not alive
print("Is thread1 alive:", thread1.is_alive())
print("Is thread2 alive:", thread2.is_alive())
print()
thread1.start()
thread2.start()
# Since thread11 is on sleep for 5 seconds, it is alive
# while thread 2 is executed instantly
print("Is thread1 alive:", thread1.is_alive())
print("Is thread2 alive:", thread2.is_alive())
輸出
Is thread1 alive:False Is thread2 alive:False Value by Thread 2:2 Is thread1 alive:True Is thread2 alive:False Value by Thread 1:1
相關用法
- Python Thread join()用法及代碼示例
- Python Thread run()用法及代碼示例
- Python Thread getName()用法及代碼示例
- Python Thread setName()用法及代碼示例
- Python Thread start()用法及代碼示例
- Python Tensorflow asin()用法及代碼示例
- Python Tensorflow nn.sigmoid()用法及代碼示例
- Python TextBlob.correct()用法及代碼示例
- Python Tensorflow math.accumulate_n()用法及代碼示例
- Python Tensorflow cosh()用法及代碼示例
- Python TextCalendar prmonth()用法及代碼示例
- Python Tensorflow acos()用法及代碼示例
- Python Tensorflow asinh()用法及代碼示例
- Python Tensorflow nn.softplus()用法及代碼示例
- Python Tensorflow exp()用法及代碼示例
- Python Tensorflow logical_and()用法及代碼示例
- Python Tensorflow logical_or()用法及代碼示例
- Python TextCalendar formatyear()用法及代碼示例
- Python Sympy Triangle.is_right()用法及代碼示例
- Python Tensorflow atanh()用法及代碼示例
注:本文由純淨天空篩選整理自 Python Thread Class | is_alive() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。