等同于Ruby中的“继续”

在C和许多其他语言中,有一个continue关键字,当在循环内部使用时,跳转到循环的下一个迭代。 Ruby中是否有这个continue关键字的等价物?


是的,它被称为next

for i in 0..5
   if i < 2
     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
 => 0..5 

next

另外,看看redo当前迭代的redo


以更习惯的方式写伊恩普顿的答案:

(1..5).each do |x|
  next if x < 2
  puts x
end

打印:

  2
  3
  4
  5
链接地址: http://www.djcxy.com/p/26777.html

上一篇: Equivalent of "continue" in Ruby

下一篇: line conditions in 'if' statements?