python class 中__next__用法
2020-12-13 13:55
标签:http ISE def com 用法 循环语句 表示 init elf python class 中__next__用法 标签:http ISE def com 用法 循环语句 表示 init elf 原文地址:https://www.cnblogs.com/tangjunjun/p/11490638.htmlclass A():
def __init__(self,b):
self.b=b
# def __iter__(self): # 这个函数可以用,表示迭代标志,但也可以省略
# return self
def __next__(self):
if self.b self.b=self.b+2
else:
raise StopIteration
self.d=self.b+10
return self.d
def K(self):
self.b=500*self.b
return self.b
c=A(2)
for i in range(4):
print(c.__next__()) # 这个可以迭代,所以可以用循环语句
print(c.K()) # 不可迭代,所以不能用循环语句
上一篇:Python基础知识学习第四天
下一篇:纯C语言(C89)实现简单链表