python stack_Python线程模块| 带有示例的stack_size()方法

python stack

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

stack_size() is an inbuilt method of the threading module in Python. It is used to return the thread stack size needed while creating new threads.

stack_size()是Python中线程模块的内置方法。 它用于返回创建新线程时所需的线程堆栈大小。

Module:

模块:

    import threading

Syntax:

句法:

    stack_size([size])

Parameter(s):

参数:

  • size: It is an optional parameter, which specifies the stack size to be used for subsequently created threads. Its value must be 0 or any positive integer; the default value is 0.

    size :这是一个可选参数,它指定要用于后续创建的线程的堆栈大小。 它的值必须为0或任何正整数; 默认值为0。

Return value:

返回值:

The return type of this method is <class 'int'>, it sets the stack size for a thread to be used while creating new threads.

此方法的返回类型为<class'int'> ,它设置创建新线程时要使用的线程的堆栈大小。

Example:

例:

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

import time
import threading

def thread_1(i):
    time.sleep(5)
    print("Value by Thread-1:",i)
    print()

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

# Creating sample threads 
thread1 = threading.Thread(target=thread_1, args=(100,))
thread2 = threading.Thread(target=thread_2, args=(200,))
thread3 = threading.Thread(target=thread_3, args=(300,))
thread4 = threading.Thread(target=thread_4, args=(400,))

print(threading.stack_size())

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

Output

输出量

0
Value by Thread-3: 300

Value by Thread-4: 400

Value by Thread-2: 200

Value by Thread-1: 100


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

python stack

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值