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


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


该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


相关用法


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