原子

原子是代表某事物名稱的常量。原子的值是它的名字。原子名稱以冒號開頭。

:atom   # that's how we define an atom

原子的名稱是唯一的。兩個具有相同名稱的原子總是相等的。

iex(1)> a = :atom
:atom

iex(2)> b = :atom
:atom

iex(3)> a == b
true

iex(4)> a === b
true

Booleans truefalse,實際上是原子。

iex(1)> true == :true
true

iex(2)> true === :true
true

原子儲存在特殊原子表中。知道這個表不是垃圾收集非常重要。所以,如果你想(或者偶然地認為它是一個事實)不斷創造原子 - 這是一個壞主意。