2005年06月08日 星期三 21:56
有一些关键的类,想从内存中删除,用del可以真的做到吗?
2005年06月09日 星期四 22:47
flyaflyaa wrote: > 有一些关键的类,想从内存中删除,用del可以真的做到吗? 可以。只要该对象的引用计数为零就会释放。 -- Qiangning Hong __________________________________________________________ / A man may be so much of everything that he is nothing of \ | anything. | | | \ -- Samuel Johnson / ---------------------------------------------------------- \ ^___^ \ (xxx)\_______ (___)\ )\/\ U ||----w | || ||
2005年06月09日 星期四 22:50
python是自动垃圾回收的,del的作用只是将引用计数减1,它不会将对象从内存中删除。要等到python自动垃圾回收,同时对象的引用计数为0时。 2005/6/8, flyaflyaa <flyaflyaa at gmail.com>: > 有一些关键的类,想从内存中删除,用del可以真的做到吗? > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > -- I like python! My Donews Blog: http://www.donews.net/limodou New Google Maillist: http://groups-beta.google.com/group/python-cn
2005年06月09日 星期四 22:51
flyaflyaa wrote: > 有一些关键的类,想从内存中删除,用del可以真的做到吗? 可以。只要该对象的引用计数为零就会释放。 -- Qiangning Hong __________________________________________________________ / A man may be so much of everything that he is nothing of \ | anything. | | | \ -- Samuel Johnson / ---------------------------------------------------------- \ ^___^ \ (xxx)\_______ (___)\ )\/\ U ||----w | || ||
Zeuux © 2025
京ICP备05028076号