Ruby - 循环

Ruby 中的循环用于执行相同的代码块指定的次数。 本章详细介绍了 Ruby 支持的所有循环语句。


Ruby while 语句

语法

while conditional [do]
   code
end

conditional 为真时执行 codewhile 循环的 conditionalcode 由保留字 do、换行符、反斜杠 \ 或分号 ; 分隔。

示例

#!/usr/bin/ruby

$i = 0
$num = 5

while $i < $num  do
   puts("Inside the loop i = #$i" )
   $i +=1
end

这将产生以下结果 −

Inside the loop i = 0
Inside the loop i = 1
Inside the loop i = 2
Inside the loop i = 3
Inside the loop i = 4

Ruby while 修饰符

语法

code while condition

OR

begin 
  code 
end while conditional

conditional 为真时执行 code

如果 while 修饰符跟在没有 rescue 或 ensure 子句的 begin 语句之后,则 code 在条件执行之前执行一次 评估。

示例

#!/usr/bin/ruby

$i = 0
$num = 5
begin
   puts("Inside the loop i = #$i" )
   $i +=1
end while $i < $num

这将产生以下结果 −

Inside the loop i = 0
Inside the loop i = 1
Inside the loop i = 2
Inside the loop i = 3
Inside the loop i = 4

Ruby until 语句

until conditional [do]
   code
end

conditional 为 false 时执行 codeuntil 语句的条件与 code 由保留字 do、换行符或分号分隔。

示例

#!/usr/bin/ruby

$i = 0
$num = 5

until $i > $num  do
   puts("Inside the loop i = #$i" )
   $i +=1;
end

这将产生以下结果 −

Inside the loop i = 0
Inside the loop i = 1
Inside the loop i = 2
Inside the loop i = 3
Inside the loop i = 4
Inside the loop i = 5

Ruby until 修饰符

语法

code until conditional

OR

begin
   code
end until conditional

conditional 为 false 时执行 code

如果 until 修饰符跟在没有 rescue 或 ensure 子句的 begin 语句之后,则 code条件被评估。

示例

#!/usr/bin/ruby

$i = 0
$num = 5
begin
   puts("Inside the loop i = #$i" )
   $i +=1;
end until $i > $num

这将产生以下结果 −

Inside the loop i = 0
Inside the loop i = 1
Inside the loop i = 2
Inside the loop i = 3
Inside the loop i = 4
Inside the loop i = 5

Ruby for 语句

语法

for variable [, variable ...] in expression [do]
   code
end

expression 中的每个元素执行一次 code

示例

#!/usr/bin/ruby

for i in 0..5
   puts "Value of local variable is #{i}"
end

在这里,我们定义了范围 0..5。 0..5 中的 i 语句将允许 i 取 0 到 5 范围内的值(包括 5)。这将产生以下结果 −

Value of local variable is 0
Value of local variable is 1
Value of local variable is 2
Value of local variable is 3
Value of local variable is 4
Value of local variable is 5

for...in 循环几乎完全等同于以下 −

(expression).each do |variable[, variable...]| code end

除了 for 循环不会为局部变量创建新范围。 for 循环的 expressioncode 由保留字 do、换行符或分号分隔。

示例

#!/usr/bin/ruby

(0..5).each do |i|
   puts "Value of local variable is #{i}"
end

这将产生以下结果 −

Value of local variable is 0
Value of local variable is 1
Value of local variable is 2
Value of local variable is 3
Value of local variable is 4
Value of local variable is 5

Ruby break 语句

语法

break

终止最内部的循环。 如果在块内调用,则终止具有关联块的方法(方法返回 nil)。

示例

#!/usr/bin/ruby

for i in 0..5
   if i > 2 then
      break
   end
   puts "Value of local variable is #{i}"
end

这将产生以下结果 −

Value of local variable is 0
Value of local variable is 1
Value of local variable is 2

Ruby next 语句

语法

next

跳转到最内部循环的下一次迭代。 如果在块内调用(使用 yield 或调用返回 nil),则终止块的执行。

示例

#!/usr/bin/ruby

for i in 0..5
   if i < 2 then
      next
   end
   puts "Value of local variable is #{i}"
end

这将产生以下结果 −

Value of local variable is 2
Value of local variable is 3
Value of local variable is 4
Value of local variable is 5

Ruby redo 语句

语法

redo

重新启动最内部循环的此迭代,而不检查循环条件。 如果在块内调用,则重新启动 yieldcall

示例

#!/usr/bin/ruby

for i in 0..5
   if i < 2 then
      puts "Value of local variable is #{i}"
      redo
   end
end

这将产生以下结果 and will go in an infinite loop −

Value of local variable is 0
Value of local variable is 0
............................

Ruby retry 语句

语法

retry

如果 retry 出现在 begin 表达式的 rescue 子句中,则从 begin 正文的开头重新开始。

begin
   do_something # exception raised
rescue
   # handles error
   retry  # restart from beginning
end

如果 retry 出现在迭代器、块或 for 表达式的主体中,则重新启动迭代器调用的调用。 迭代器的参数被重新评估.

for i in 1..5
   retry if some_condition # restart from i == 1
end

示例

#!/usr/bin/ruby
for i in 0..5
   retry if i > 2
puts "Value of local variable is #{i}"
end

这将产生以下结果并将进入无限循环 −

Value of local variable is 1
Value of local variable is 2
Value of local variable is 1
Value of local variable is 2
Value of local variable is 1
Value of local variable is 2
............................