Ruby 提供了幾種很常見的條件結構。在這裡,我們將解釋所有的條件語句和 Ruby 中可用的修飾符。
if 表達式用於條件執行。值 false 和 nil 為假,其他值都為真。請注意,Ruby 使用 elsif,不是使用 else if 和 elif。
如果 conditional 為真,則執行 code。如果 conditional 不為真,則執行 else 子句中指定的 code。
通常我們省略保留字 then 。若想在一行內寫出完整的 if 式,則必須以 then 隔開條件式和程式區塊。如下所示:
if a == 4 then a = 7 end以上實例輸出結果:
x 是 1
if修飾詞組表示當 if 右邊之條件成立時才執行 if 左邊的式子。即如果 conditional 為真,則執行 code。
以上實例輸出結果:
debug
unless式和 if式作用相反,即如果 conditional 為假,則執行 code。如果 conditional 為真,則執行 else 子句中指定的 code。
以上實例輸出結果為:
x 小於 2
如果 conditional 為假,則執行 code。
以上實例輸出結果:
1 -- 這一行輸出 3 -- 這一行輸出
case先對一個 expression 進行匹配判斷,然後根據匹配結果進行分支選擇。
它使用 ===運算符比較 when 指定的 expression,若一致的話就執行 when 部分的內容。
通常我們省略保留字 then 。若想在一行內寫出完整的 when 式,則必須以 then 隔開條件式和程式區塊。如下所示:
when a == 4 then a = 7 end因此:
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以上實例輸出結果為:
小孩
當case的"表達式"部分被省略時,將計算第一個when條件部分為真的表達式。
foo = false bar = true quu = false 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"