Erlang-list_to_atom


该方法用于将列表项转换为原子。

句法

list_to_atom(listvalue)

参数

  • listvalue - 这是需要转换为原子的列表值。

返回值

基于列表值输入的原子。

例如

-module(helloworld). 
-export([start/0]). 

start() -> 
   io:fwrite("~p~n",[list_to_atom("atom1")]).

输出

上述程序的输出如下。

atom1
erlang_atoms.htm