W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
Ruby 提供了其他現(xiàn)代語言中很常見的條件結構。在這里,我們將解釋所有的條件語句和 Ruby 中可用的修飾符。
if conditional [then]
code...
[elsif conditional [then]
code...]...
[else
code...]
end
if 表達式用于條件執(zhí)行。值 false 和 nil 為假,其他值都為真。請注意,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
code if condition
如果 conditional 為真,則執(zhí)行 code。
#!/usr/bin/ruby
$debug=1
print "debug\n" if $debug
這將產(chǎn)生以下結果:
debug
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
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
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
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: