Elixir - 除非另有声明


except..else语句由一个布尔表达式后跟一个或多个语句组成接下来是 else 语句及其自己的语句块。

句法

except..else语句的语法如下 -

unless boolean-statement do
   #Code to be executed if condition is false
else
   #Code to be executed if condition is true
end

如果布尔表达式的计算结果为false,则将执行 except 语句内的代码块。如果布尔表达式的计算结果为 true,则将执行给定的 except 语句的else关键字后面的代码。

例子

a = false
unless a === false do
   IO.puts "Condition is not satisfied"
else
   IO.puts "Condition was satisfied!"
end
IO.puts "Outside the unless statement"

上述程序生成以下结果。

Condition was satisfied!
Outside the unless statement
elixir_decision_making.htm