當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


erlang atom_to_list用法及代碼示例


Erlang atom_to_list函數/方法的用法及代碼示例。


此方法用於將原子轉換為列表。

用法


Atom_to_list(atom)

參數

  • atom−這是需要轉換為列表值的原子。

返回值

根據原子的輸入列出值。

例如


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

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

輸出

上麵程序的輸出如下。


“atom1”

相關用法


注:本文由純淨天空篩選整理自 erlang atom_to_list。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。