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


erlang atom_to_binary用法及代碼示例


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


此方法用於將原子轉換為二進製值。

用法


atom_to_binary(atom)

參數

  • atom−需要轉換為二進製值的原子。

返回值

基於原子值的二進製值。

例如


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

start() -> 
   io:fwrite("~p~n",[atom_to_binary('Erlang', utf8)]).

輸出

以上程序的輸出如下。


<<"Erlang">>

相關用法


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