用法:
gc.is_finalized(obj)
如果给定对象已被垃圾Collector完成,则返回
True
,否则返回False
。>>> x = None >>> class Lazarus: ... def __del__(self): ... global x ... x = self ... >>> lazarus = Lazarus() >>> gc.is_finalized(lazarus) False >>> del lazarus >>> gc.is_finalized(x) True
3.9 版中的新函数。
相关用法
- Python gc.is_tracked用法及代码示例
- Python gcd()用法及代码示例
- Python PIL getbands() and getextrema()用法及代码示例
- Python PIL getpixel()用法及代码示例
- Python getattr()用法及代码示例
- Python OpenCV getTrackbarPos()用法及代码示例
- Python OpenCV getgaussiankernel()用法及代码示例
- Python gzip.compress(s)用法及代码示例
- Python globals()用法及代码示例
- Python OpenCV getRotationMatrix2D()用法及代码示例
- Python numpy string greater_equal()用法及代码示例
- Python PIL getbands()用法及代码示例
- Python graphlib.TopologicalSorter用法及代码示例
- Python graphlib.TopologicalSorter.static_order用法及代码示例
- Python Tkinter grid()用法及代码示例
- Python gettext.GNUTranslations.ngettext用法及代码示例
- Python PIL getpalette()用法及代码示例
- Python PIL getcolors()用法及代码示例
- Python math gamma()用法及代码示例
- Python graphlib.TopologicalSorter.is_active用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 gc.is_finalized。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。