- Ruby if…else 语句
- Ruby if 修饰符
- Ruby unless 语句
- Ruby unless 修饰符
- Ruby case 语句
- Ruby while 语句
- Ruby while 修饰符
- Ruby until 语句
- Ruby until 修饰符
- Ruby for语句
- Ruby break语句
- Ruby next语句
- Ruby redo语句
- Ruby retry 语句
Ruby if…else 语句
x=1
if x > 2
puts "x 大于 2"
elsif x <= 2 and x!=0
puts "x 是 1。"
else
puts "无法得知 x 的值。"
end
# 结果:x 是 1
Ruby if 修饰符
=begin
if修饰词组表示当 if 右边之条件成立时才执行 if 左边的式子。
=end
$debug=1
print "debug\n" if $debug
Ruby unless 语句
unless式和 if 式作用相反,即如果 conditional 为假,则执行 code。如果 conditional 为真,则执行 else 子句找那个指定的 code。
unless conditional [then]
code
else
code
end
x=1
unless x>2
puts "x 小于 2"
else
puts "x 小于 2"
end
Ruby unless 修饰符
# 如果 conditional 为假,则执行 code
code unless conditional
$var = 1
print "1 -- 这一行输出\n" if $var
print "2 -- 这一行不输出\n" unless $var
$var = false
print "3 -- 这一行输出\n" unless $var
Ruby case 语句
$age = 5
case $age
when 0 .. 2
puts "婴儿"
when 3 .. 6
puts "小孩"
when 7 .. 12
puts "child"
when 13 .. 18
puts "少年"
else
puts "其他年龄段"
end
foo = false
bar = true
quu = false
# 当 case 的“表达式”部分被省略时,将计算第一个when条件部分为真的表达式。
case
when foo then puts 'foo is true'
when bar then puts 'bar is true '
when quu then puts 'quu is true'
end
# 结果:bar is true
Ruby while 语句
while conditional [do]
code
end
# 或者
while conditional [:]
code
end
当 conditional 为真时,执行 code 语法中 do 或 : 可以省略不写。但若要在一行内写出 while 式,则必须以 do 或 : 隔开条件式或程序区块。
$i = 0
$num = 5
while $i < $num do
puts("在循环语句中 i = #$i")
$i += 1
end
Ruby while 修饰符
code while condition
# 或者
begin
code
end while conditional
当 conditional 为真时,执行 code. 如果 while 修饰符跟在一个没有 rescue 或 ensure 子句的 begin 语句后面,code 会在 conditional 判断之前执行一次。
$i = 0
$num = 5
begin
puts ("在循环语句中 i = #$i")
$i += 1
end while $i < $num
=begin
在循环语句中 i = 0
在循环语句中 i = 1
在循环语句中 i = 2
在循环语句中 i = 3
在循环语句中 i = 4
=end
Ruby until 语句
until conditional [do]
code
end
当 conditional 为假时,执行 code。 语法中 do 可以省略不写。但若要在一行内写出 until 式,则必须以 do 隔开条件式或程序区块。
$i = 0
$num = 5
until $i > $num do
puts("在循环语句中 i = #$i")
$i += 1
end
=begin
在循环语句中 i = 0
在循环语句中 i = 1
在循环语句中 i = 2
在循环语句中 i = 3
在循环语句中 i = 4
在循环语句中 i = 5
=end
Ruby until 修饰符
code until conditional
# 或者
begin
code
end until conditional
当 conditional 为 false 时,执行 code 如果 until 修饰符跟在一个没有 ensure 子句的 begin 语句后面, code 会在 conditional 判断之前执行一次。
$i = 0
$num = 5
begin
puts("在循环语句中 i = #$i" )
$i +=1;
end until $i > $num
=begin
结果:
在循环语句中 i = 0
在循环语句中 i = 1
在循环语句中 i = 2
在循环语句中 i = 3
在循环语句中 i = 4
在循环语句中 i = 5
=end
Ruby for语句
for i in 0..5
puts "局部变量的值为 #{i}"
end
=begin
局部变量的值为 0
局部变量的值为 1
局部变量的值为 2
局部变量的值为 3
局部变量的值为 4
局部变量的值为 5
=end
for…in 循环几乎完全等价于:
(expression).each do |variable [, variable...] | code end
但是,for循环不会为局部变量创建一个新的作用域。 语法中 do 可以省略不写。但若要在一行内写出 for 式,则必须以 do 隔开条件式或程序区块
(0..5).each do |i|
puts "局部变量的值为 #{i}"
end
=begin
局部变量的值为 0
局部变量的值为 1
局部变量的值为 2
局部变量的值为 3
局部变量的值为 4
局部变量的值为 5
=end
Ruby break语句
for i in 0..5
if i > 2 then
break
end
puts "局部变量的值为 #{i}"
end
=begin
局部变量的值为 0
局部变量的值为 1
局部变量的值为 2
=end
Ruby next语句
=begin
跳到循环的下一个迭代。如果在块内调用,则终止块的执行(yield 表达式返回 nil)
=end
for i in 0..5
if i < 2 then
next
end
puts "局部变量的值为 #{i}"
end
=begin
局部变量的值为 2
局部变量的值为 3
局部变量的值为 4
局部变量的值为 5
=end
Ruby redo语句
=begin
重新开始最内部循环的该次迭代,不检查循环条件。如果在块内调用,则重新开始 yield 或 call。
=end
for i in 0..5
if i < 2 then
puts "局部变量的值为 #{i}"
redo
end
end
# 会是无限循环
Ruby retry 语句
注意:1.9以及以后的版本不支持在循环中使用retry。 如果 retry 出现在 begin 表达式的 rescue 子句中,则从 begin 主体的开头重新开始。
begin
do_something # 抛出异常
rescue
# 处理错误
retry # 重新从 begin 开始
end
=begin
这个已经废弃
=end
for i in 1..5 do
retry if i > 2
puts "局部变量的值为 #{i}"
end