欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ruby中的循环语句总结

程序员文章站 2022-08-29 19:57:23
while(当…) 循环     while&...

while(当…) 循环

 

 

while 条件

语句1; 语句2 ; 语句…

end

单行 while 循环

( 语句1; 语句2 ; 语句… ) while 条件

until(直到…) 循环

until 条件 = while not (条件)

for…in 循环

 

 

for 变量 in 对象

语句1; 语句2 ; 语句…

end

break

跳出当层循环

next

忽略本次循环的剩余部分,开始下一次的循环

redo

重新开始循环,还是从这一次开始

retry

重头开始这个循环体

times

3.times { print "hi!" } #hi!hi!hi!

upto

1.upto(9) {|i| print i if i<7 } #123456

downto

9.downto(1){|i| print i if i<7 } #654321

each

(1..9).each {|i| print i if i<7} #123456

step

0.step(11,3) {|i| print i } #0369