迭代器

Posted DoomLs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了迭代器相关的知识,希望对你有一定的参考价值。

# 随便定义一个对象, 看看它是否可迭代
from collections import Iterable
class MyList(object):
def __init__(self):
self.container = []
def add(self, item):
self.container.append(item)
mylist = MyList()
mylist.add(\'a\')
print(isinstance(mylist, Iterable)) # FALSE
# 是不是在判断mylist对象是否可迭代, 对象底层实现了__iter__魔法方法

# 思考: 如何让一个对象变成可迭代的
from collections import Iterable
class MyList(object):
def __init__(self):
self.container = []
def add(self, item):
self.container.append(item)
def __iter__(self):
return \'迭代器\'
mylist = MyList()
mylist.add(\'a\')
print(isinstance(mylist, Iterable)) # True

以上是关于迭代器的主要内容,如果未能解决你的问题,请参考以下文章

五 迭代器生成器

STL迭代器相关的输出迭代器

课时10:迭代器迭代器失效分析

C++迭代器 iterator

C++迭代器 iterator

25Python之迭代器