当前位置:   article > 正文

python中iter()函数和__iter__方法研究_python中的iter和__iter__是不是一样的

python中的iter和__iter__是不是一样的

个人感觉python中的迭代方法,有点类似C语言中如下的功能,对结构中的链或表进行某种遍历

    while(NULL!=p)
    {
        p->something=sth;
        p=p->next;
    }
  • 1
  • 2
  • 3
  • 4
  • 5

下面的python代码构造了一个“person”对象,不同的person对象构成了personS集合,使用for循环在personS集合中进行迭代(遍历)

class person:
    def __init__(self):
        self.l=[]
        self.count=0;
        self.index=0;

    def addNew(self,name,age):
        #personReal=dict(name,age)
        personReal={'name':name,'age':age}
        self.count=self.count+1
        self.l.append(personReal)
    def __getitem__(self):
        print("__getitem__")
        #return self.l.next()
    def next(self):
        print("next")
        #return self.l.next()

    def __next__(self):
        print("__next__")
        if(self.index<self.count):
            self.index=self.index+1
            return self.l[self.index]

    def __iter__(self):
        print("__iter__")
        #return self.l.next()
        if(self.index<self.count):
            self.index=self.index+1
            #return self.l[self.index]
            return iter(self.l)

if __name__ == '__main__':
    personS=person()
    personS.addNew("john",8)
    personS.addNew("jane",7)
    personS.addNew("Steve",9)

    print(personS.count,personS.index,personS.l)

    for ps in personS:
        #print("ps.name =%s,ps.age=%d" % ps[name],ps.age)
        print(ps)
        print(len(ps))
        print(ps.keys())
        for key in ps.keys():
            print("key %s,ps[key]=%s" % (key,ps[key]))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47

运行结果

这里写图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/145611
推荐阅读
相关标签
  

闽ICP备14008679号