python-list_iterator是否会垃圾收集其消耗的值?

python-list_iterator是否会垃圾收集其消耗的值?,第1张

概述假设我有li = iter([1,2,3,4]).当我执行next(li)时,垃圾收集器会丢弃对不可访问元素的引用.而关于双端队列,那么di = iter(deque([1,2,3,4]))中的元素一旦消耗就可以被收集.如果不是,Python中的本机数据结构是否实现这种行为.最佳答案https://github.com/python/cpython/blob

假设我有li = iter([1,2,3,4]).

当我执行next(li)时,垃圾收集器会丢弃对不可访问元素的引用.

而关于双端队列,那么di = iter(deque([1,4]))中的元素一旦消耗就可以被收集.

如果不是,Python中的本机数据结构是否实现这种行为.最佳答案https://github.com/python/cpython/blob/bb86bf4c4eaa30b1f5192dab9f389ce0bb61114d/Objects/iterobject.c

保留对列表的引用,直到您迭代序列的末尾为止.您可以在iternext函数中看到这一点.

双端队列在这里,没有特殊的迭代器.

https://github.com/python/cpython/blob/master/Modules/_collectionsmodule.c

您可以创建自己的类,并定义__iter__和__next__以执行您想要的 *** 作.像这样

class CList(List):    def __init__(self,lst):        self.lst = lst    def __iter__(self):        return self    def __next__(self):        if len(self.lst) == 0:            raise stopiteration        item = self.lst[0]        del self.lst[0]        return item    def __len__(self):      return len(self.lst)l = CList([1,4])for item in l:  print( len(l) )
总结

以上是内存溢出为你收集整理的python-list_iterator是否会垃圾收集其消耗的值? 全部内容,希望文章能够帮你解决python-list_iterator是否会垃圾收集其消耗的值? 所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1199529.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存