原文
1. block中的 yield 与遍历
5.times do |i|
puts i
end
或者
def my_times(n)
i = 0
while n amp;amp;gt; i
i += 1
yield i
end
end
my_times(5) { |num|
puts amp;q ...……
最近开始学习Ruby,免不了就要进行Ruby的安装和一些配置.今天抽空总结一下.
我个人使用的是windows,首先上Ruby的官方网站(http://www.ruby-lang.org/en/)下载安装程序.
在Ruby的官网Download--amp;amp;gt;Third Party ...……
在ruby第二章里面有一段话: amp;quot; This is pretty interesting and important, and so if you weren't paying attention before, you should probably start now.amp;quot; 讲的就是yield这个关键字所传达的 ...……