Ruby 判斷

2018-08-12 22:02 更新

Ruby 判斷

Ruby 提供了其他現(xiàn)代語言中很常見的條件結構。在這里,我們將解釋所有的條件語句和 Ruby 中可用的修飾符。

Ruby if...else 語句

語法

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

if 表達式用于條件執(zhí)行。值 falsenil 為假,其他值都為真。請注意,Ruby 使用 elsif,不是使用 else if 和 elif。

如果 conditional 為真,則執(zhí)行 code。如果 conditional 不為真,則執(zhí)行 else 子句中指定的 code。

if 表達式的 conditional 通過保留字 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 為真,則執(zhí)行 code。

實例

#!/usr/bin/ruby

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

這將產(chǎn)生以下結果:

debug

Ruby unless 語句

語法

unless conditional [then]
   code
[else
   code ]
end

如果 conditional 為假,則執(zhí)行 code。如果 conditional 為真,則執(zhí)行 else 子句中指定的 code

實例

#!/usr/bin/ruby

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

這將產(chǎn)生以下結果:

x is less than 2

Ruby unless 修飾符

語法

code unless conditional

如果 conditional 為假,則執(zhí)行 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

這將產(chǎn)生以下結果:

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

Ruby case 語句

語法

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

比較 case 所指定的 expression,當使用 === 運算符指定時,執(zhí)行匹配的 when 子句的 code。

when 子句所指定的 expression 背當作左操作數(shù)。如果沒有匹配的 when 子句,case 執(zhí)行 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

這將產(chǎn)生以下結果:

little child
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號