python 线程模块_Python线程模块| active_count()方法与示例

python 线程模块

Python threading.active_count()方法 (Python threading.active_count() Method)

active_count() is an inbuilt method of the threading module in Python. It is used to return the number of Thread objects that are active at any instant.

active_count()是Python中线程模块的内置方法。 它用于返回任何时刻处于活动状态的Thread对象的数量。

Module:

模块:

    import threading

Syntax:

句法:

    active_count()

Parameter(s):

参数:

  • None

    没有

Return value:

返回值:

The return type of this method is <class 'int'>, it returns the number of active Thread class objects at any instant.

该方法的返回类型为<class'int'> ,它随时返回活动的Thread类对象的数量。

Example:

例:

# Python program to explain the use of 
# active_count() method in Threading Module

import time
import threading

def thread_1(i):
    time.sleep(2)
    print("Number of active threads:", threading.active_count())
    print('Value by Thread 1:', i)

def thread_2(i):
    time.sleep(5)
    print("Number of active threads:", threading.active_count())
    print('Value by Thread 2:', i)
    
def thread_3(i):
    print("Number of active threads:", threading.active_count())
    print("Value by Thread 3:", i)
    
# Creating sample threads 
thread1 = threading.Thread(target=thread_1, args=(1,))
thread2 = threading.Thread(target=thread_2, args=(2,))
thread3 = threading.Thread(target=thread_3, args=(3,))

print("Number of active threads in the starting:", threading.active_count())
print("The active threads in the starting is 1 which is the main thread that executes till the program runs")

# Starting the threads
thread1.start()
thread2.start()
thread3.start()

Output

输出量

Number of active threads in the starting: 1
The active threads in the starting is 1 which is the main thread that executes till the program runs
Number of active threads: 4
Value by Thread 3: 3
Number of active threads: 3
Value by Thread 1: 1
Number of active threads: 2
Value by Thread 2: 2


翻译自: https://www.includehelp.com/python/threading-active_count-method-with-example.aspx

python 线程模块

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值