该方法用于确定术语是否确实是原子。
is_atom(term)
term - 这是需要评估它是否是原子的术语值。
是的,如果术语值是一个原子,否则将返回false。
-module(helloworld). -export([start/0]). start() -> io:fwrite(atom1), io:fwrite("~n"), io:fwrite("~p~n",[is_atom(atom1)]).
上述程序的输出如下。
atom1 true