1
在此erlang file代碼尋找有這樣的功能:16#00是什麼意思?
socket_type_atom(16#00) -> pair;
socket_type_atom(16#01) -> pub;
socket_type_atom(16#02) -> sub;
socket_type_atom(16#03) -> req;
socket_type_atom(16#04) -> rep;
socket_type_atom(16#05) -> dealer;
socket_type_atom(16#06) -> router;
socket_type_atom(16#07) -> pull;
socket_type_atom(16#08) -> push.
據我瞭解二郎整數符號,5#10指十進制中的整數5。那麼16#00
代表什麼?
0在基座16,即,爲0x0? –