码迷,mamicode.com
首页 > 编程语言 > 详细

Python 迭代器

时间:2018-07-14 17:19:47      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:elf   sel   pytho   call   code   int   obj   def   style   

1、迭代器定义

  迭代器只不过是一个实现了迭代器协议的容器对象。它基于两个方法:

  next      返回容器的下一个项目

  __iter__  返回迭代器本身

2、内建函数iter()

  迭代器可以通过内置函数iter()和一个序列创建:

it = iter(abc)
print it.next()
print it.next()
print it.next()
print it.next()
a
b
c
Traceback (most recent call last):
  File "f:\test\iter.py", line 7, in <module>
    print it.next()
StopIteration

  当序列遍历完时,将抛出StopIteration异常,这使迭代器和循环兼容,因为它们将捕获这个异常而停止循环。

3、生成定制迭代器

  要创建定制迭代器,编写一个具有next()方法的类,只要该类提供返回迭代器实例的__iter__()方法即可。

class MyIterator(object):

    def __init__(self, step):
        self.step = step

    def next(self):
        if self.step == 0:
            raise StopIteration
        self.step -= 1

        return self.step

    def __iter__(self):
        return self


for it in MyIterator(4):
    print it
3
2
1
0

 

Python 迭代器

标签:elf   sel   pytho   call   code   int   obj   def   style   

原文地址:https://www.cnblogs.com/alvin2010/p/9310142.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!