python class 中__next__用法

2020-12-13 13:55

阅读:433

标签:http   ISE   def   com   用法   循环语句   表示   init   elf   

class 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 class 中__next__用法

标签:http   ISE   def   com   用法   循环语句   表示   init   elf   

原文地址:https://www.cnblogs.com/tangjunjun/p/11490638.html


评论


亲,登录后才可以留言!