小编典典

相当于 Ruby 中的“继续”

all

在 C 和许多其他语言中,有一个continue关键字在循环内使用时会跳转到循环的下一次迭代。continueRuby中是否有与 this
关键字等价的关键字?


阅读 108

收藏
2022-03-03

共1个答案

小编典典

是的,它叫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
2022-03-03