該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
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python os.abort()用法及代碼示例
- Python os.WEXITSTATUS()用法及代碼示例
- Python os.fchmod()用法及代碼示例
- Python PIL getpixel()用法及代碼示例
- Python PIL putpixel()用法及代碼示例
- Python os.sysconf()用法及代碼示例
- Python os.confstr()用法及代碼示例
- Python os._exit()用法及代碼示例
- Python cmath.log()用法及代碼示例
- Python Tensorflow cos()用法及代碼示例
- Python sympy.rf()用法及代碼示例
注:本文由純淨天空篩選整理自Rajnis09大神的英文原創作品 Python | sys.setswitchinterval() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。