Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Ruby 是否能够像 Smalltalk 那样在(任何东西的)集合上进行流式传输?
你可能想谈谈数组迭代,这是 Ruby 中最相似的概念
[object1, object2, object3].each 做 |obj| # 用你的迭代 obj 结束
使用 'break,next' 关键字可以实现中断/跳转 对象可以是异构的或非异构的(例如来自 IO::readlines 的字符串行)
如果要将大型文本文件作为流分析,请将其拆分为数组,并且可以在加入副本之前使用匹配(正则表达式)方法、搜索方法、修改方法