Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは、接続のプロセス ID の出力に関する非常に単純な質問です。たとえば、Listen in this one? と出力します。私はListenがPidであると仮定しています...
{ok, Listen} = gen_tcp:listen();
任意の Erlang 用語を出力できるフォーマット指定子をio:format使用して出力できます。~p
io:format
~p
> io:format("~p~n", [Listen]). #Port<0.605>
(Listen実際には pid ではなく、ポート識別子です。)
Listen