Elixir 原子
原子是名字与值相同的常量。某些语言中称其为符号:
iex> :hello
:hello
iex> :hello == :world
false
事实上,布尔型和也是原子:true
false
iex> true == :true
true
iex> is_atom(false)
true
iex> is_boolean(:false)
true
原子是名字与值相同的常量。某些语言中称其为符号:
iex> :hello
:hello
iex> :hello == :world
false
事实上,布尔型和也是原子:true
false
iex> true == :true
true
iex> is_atom(false)
true
iex> is_boolean(:false)
true