此方法用于將項轉(zhuǎn)換為二進制。
term_to_binary(term)
term ?這是術語值,需要將其轉(zhuǎn)換為二進制值。
根據(jù)指定的項返回一個二進制值。
-module(helloworld). -export([start/0]). start() -> io:fwrite("~p~n",[term_to_binary("hello")]).
當我們運行上面的程序時,我們將得到以下結(jié)果。
{<<131,107,0,5,104,101,108,108,111>>}