此方法用于將現(xiàn)有列表轉(zhuǎn)換為二進(jìn)制列表。
list_to_binary(lst)
Lst ?這是需要轉(zhuǎn)換為二進(jìn)制值的列表。
返回列表的位串。
-module(helloworld). -export([start/0]). start() -> io:fwrite("~p~n",[list_to_binary([1,2,3])]).
當(dāng)我們運(yùn)行上面的程序時(shí),我們將得到以下結(jié)果。
<<1,2,3>>