Ruby - if...else, case, unless

Ruby 提供了在现代语言中非常常见的条件结构。 在这里,我们将解释 Ruby 中可用的所有条件语句和修饰符。


Ruby if...else 语句

语法

if conditional [then]
   code...
[elsif conditional [then]
   code...]...
[else
   code...]
end

if 表达式用于条件执行。 值 falsenil 为假,其他一切为真。 注意 Ruby 使用 elsif,而不是 else if 和 elif。

如果 conditional 为真,则执行 code。 如果 conditional 不为真,则执行 else 子句中指定的 code

if 表达式的 条件 由保留字 then、换行符或分号与代码分隔。

示例

#!/usr/bin/ruby

x = 1
if x > 2
   puts "x is greater than 2"
elsif x <= 2 and x!=0
   puts "x is 1"
else
   puts "I can't guess the number"
end
x is 1

Ruby if 修饰符

语法

code if condition

如果 conditional 为真,则执行 code

示例

#!/usr/bin/ruby

$debug = 1
print "debug\n" if $debug

这将产生以下结果 −

debug

Ruby unless 除非语句

语法

unless conditional [then]
   code
[else
   code ]
end

如果 conditional 为 false,则执行 code。 如果 conditional 为真,则执行 else 子句中指定的代码。

示例

#!/usr/bin/ruby

x = 1 
unless x>=2
   puts "x is less than 2"
 else
   puts "x is greater than 2"
end

这将产生以下结果 −

x is less than 2

Ruby unless 修饰符

语法

code unless conditional

如果 conditional 为 false,则执行 code

示例

#!/usr/bin/ruby

$var =  1
print "1 -- Value is set\n" if $var
print "2 -- Value is set\n" unless $var

$var = false
print "3 -- Value is set\n" unless $var

这将产生以下结果 −

1 -- Value is set
3 -- Value is set

Ruby case 语句

语法

case expression
[when expression [, expression ...] [then]
   code ]...
[else
   code ]
end

比较 case 指定的 表达式 和使用 === 运算符时指定的表达式,并执行匹配的 when 子句的 code

when 子句指定的 表达式 被计算为左操作数。 如果没有 when 子句匹配,case 执行 else 子句的代码。

when 语句的表达式由保留字 then、换行符或分号与代码分隔。 因此 −

case expr0
when expr1, expr2
   stmt1
when expr3, expr4
   stmt2
else
   stmt3
end

基本上和下面类似 −

_tmp = expr0
if expr1 === _tmp || expr2 === _tmp
   stmt1
elsif expr3 === _tmp || expr4 === _tmp
   stmt2
else
   stmt3
end

示例

#!/usr/bin/ruby

$age =  5
case $age
when 0 .. 2
   puts "baby"
when 3 .. 6
   puts "little child"
when 7 .. 12
   puts "child"
when 13 .. 18
   puts "youth"
else
   puts "adult"
end

这将产生以下结果 −

little child