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

python 使用__neg__和__iter__

时间:2016-10-12 16:28:37      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:

 

__neg__

  python中 __neg__ 方法对应于 符号 -

技术分享

  可见 str 没有__neg__,定义 strnew

技术分享

   好吧,无法再简化了

 

__iter__

  看看 list 的 __iter__:

技术分享

  list_iterator 也是有 __iter__ 的,它返回自己。

  python2 迭代调用 next;python3 迭代调用 __next__。

技术分享

  __next__ 结束时 raise StopIteration 告诉for循环已经结束。

 

python 使用__neg__和__iter__

标签:

原文地址:http://www.cnblogs.com/backinfile/p/5953141.html

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