該sys模塊提供對解釋器使用或維護的某些變量以及與解釋器強烈交互的函數的訪問。它提供有關python解釋器的常量,函數和方法的信息。它可以用於操縱Python運行時環境。
sys.getallocatedblocks()
用於獲取解釋器當前分配的內存塊數,而不管其大小如何。此函數主要用於跟蹤和調試內存泄漏。為了獲得更可預測的結果,我們可能必須致電_clear_type_cache()
和gc.collect()
。
用法: sys.getallocatedblocks()
參數: This method accepts no parameter.
返回值: This method returns the number of memory blocks currently allocated by the interpreter but if it cannot reasonably compute this information then 0 is returned.
範例1:
使用sys.getallocatedblocks()
查找分配給解釋器的內存的方法。
# Python program to explain sys.getallocatedblocks() method
# Importing sys module
import sys
# Using sys.getallocatedblocks() method
memory = sys.getallocatedblocks()
# Print result
print(memory)
輸出:
20731
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python Decimal max()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
- Python os.rmdir()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python Decimal min()用法及代碼示例
- Python os.readlink()用法及代碼示例
- Python os.writev()用法及代碼示例
- Python os.readv()用法及代碼示例
- Python PIL RankFilter()用法及代碼示例
- Python os.rename()用法及代碼示例
- Python os.sendfile()用法及代碼示例
注:本文由純淨天空篩選整理自Rajnis09大神的英文原創作品 Python | sys.getallocatedblocks() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。