Elixir - 除非声明


except 语句由一个布尔表达式后跟一个或多个语句组成。

句法

except 语句的语法如下 -

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

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

例子

a = false
unless a === true do
   IO.puts "Condition is not satisfied"
   IO.puts "So this code block is executed"
end
IO.puts "Outside the unless statement"

上述程序生成以下结果 -

Condition is not satisfied
So this code block is executed
Outside the unless statement
elixir_decision_making.htm