Erlang - byte_size 方法
此方法返回Bitstring中包含的字节数。
语法
byte_size(bitstring)
参数
bitstring − 这是需要确定字节数的 btistring。
返回值
该方法返回bitstring中包含的字节数。
例如
-module(helloworld). -export([start/0]). start() -> io:fwrite("~p~n",[byte_size(<<1,2,3>>)]).
输出
当我们运行上面的程序时,将得到以下结果。
3