class F:
def __init__(self,x):
self.x = x def __iter__(self): #把对象 变成可迭代对象
return self def __next__(self):
return self.x f = F(2)
print(f.__next__()) #---> next(f) #通过for 来循环
for i in f: #f = iter(f) -->f.__iter__ i实际就是f.__next__拿到一个值
print(i) #会一直运行结果2,为什么一直跑,其实就是一个无穷next
相关文章
- CSS使用flex布局和order属性对html元素排序
- 理解React Native的Props和State
- SpringBoot中配置文件详解(yml、properties全局配置和自定义配置),获取配置方式
- 分享一个免*的GPT,刷题和学习的好帮手
- springboot前端ajax 04 关于后台传的时间和状态在前端的转换
- Unity日记20(存档读档PlayerPrefs和PlayerPrefs拓展)
- 深入理解PyTorch中的train()、eval()和no_grad()
- 同步和异步的区别
- 考研数二第十讲 求导平面曲线的切线和法线以及曲率圆与曲率半径和弧微分
- 使用 React 和 GPT-4 技术构建智能语言翻译应用