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? –