Python线程模块| setprofile()方法与示例

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

setprofile() is an inbuilt method of the threading module in Python. It is used to set a profile function for all the threads that are created by the threading module. The func function is passed to sys.profile() for each method.

setprofile()是Python中线程模块的内置方法。 它用于为线程模块创建的所有线程设置配置文件功能。 每个函数的func函数都传递给sys.profile() 。

Module:

模块:

    import threading

Syntax:

句法:

    setprofile(func)

Parameter(s):

参数:

  • func: It is a required parameter, which is passed to sys.setprofile() for each thread. This function is executed before the run() method.

    func :这是必需的参数,该参数传递给每个线程的sys.setprofile()。 该函数在run()方法之前执行。

Return value:

返回值:

The return type of this method is <class 'NoneType'>, it does not return anything. It sets a profile function for all the threads.

此方法的返回类型为<class'NoneType'> ,它不返回任何内容。 它为所有线程设置配置文件功能。

Example:

例:

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

import time
import threading

def trace_profile(): 
    print("Current thread's profile")
    print("Name:", str(threading.current_thread().getName()))
    print("Thread id:", threading.get_ident())

def thread_1(i):
    time.sleep(5)
    threading.setprofile(trace_profile())
    print("Value by Thread-1:",i)
    print()
    
def thread_2(i):
    threading.setprofile(trace_profile())
    print("Value by Thread-2:",i)
    print()
    
def thread_3(i):
    time.sleep(4)
    threading.setprofile(trace_profile())
    print("Value by Thread-3:",i)
    print()
    
def thread_4(i):
    time.sleep(1)
    threading.setprofile(trace_profile())
    print("Value by Thread-4:",i)
    print()

# Creating sample threads 
threading.setprofile(trace_profile())
thread1 = threading.Thread(target=thread_1, args=(1,))
thread2 = threading.Thread(target=thread_2, args=(2,))
thread3 = threading.Thread(target=thread_3, args=(3,))
thread4 = threading.Thread(target=thread_4, args=(4,))

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

Output

输出量

Current thread's profile
Name: MainThread
Thread id: 140461120771840
Current thread's profile
Name: Thread-2
Thread id: 140461086283520
Value by Thread-2: 2

Current thread's profile
Name: Thread-4
Thread id: 140461086283520
Value by Thread-4: 4

Current thread's profile
Name: Thread-3
Thread id: 140461077890816
Value by Thread-3: 3

Current thread's profile
Name: Thread-1
Thread id: 140461094676224
Value by Thread-1: 1


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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值