当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python sys.setswitchinterval()用法及代码示例


该sys模块提供对解释器使用或维护的某些变量以及与解释器强烈交互的函数的访问。它提供有关python解释器的常量,函数和方法的信息。它可以用于操纵Python运行时环境。

sys.setswitchinterval()方法用于设置解释器的线程切换间隔(以秒为单位)。该浮点值确定分配给同时运行的Python线程的时间片的理想持续时间。实际值可能更高,尤其是如果使用long-running内部函数或方法。另外,在间隔时间结束时调度哪个线程是操作系统的决定。口译员没有自己的调度程序。这确定了解释器检查线程切换的频率。

用法: sys.setswitchinterval(interval)

参数:
interval:要设置的新开关间隔。

返回值:它返回解释器的线程切换间隔。

示例1:

# Python program to explain sys.setswitchinterval() method  
      
# Importing sys module  
import sys  
  
  
# Using sys.getswitchinterval() method  
# to find the current switch interval  
interval = sys.getswitchinterval() 
  
# Print the current switch interval  
print('Before changing, switchinterval =', interval)  
  
# New interval 
interval = 1
  
# Using sys.setswitchinterval() method  
# to set the interpreter’s thread switch interval 
sys.setswitchinterval(interval) 
  
# Using sys.getswitchinterval() method  
# to find the current switch interval  
interval = sys.getswitchinterval() 
  
# Print the current switch interval  
print('After changing, switchinterval =', interval) 
输出:
Before changing, switchinterval = 0.005
After changing, switchinterval = 1.0


相关用法


注:本文由纯净天空筛选整理自Rajnis09大神的英文原创作品 Python | sys.setswitchinterval() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。