返回本地节点上所有端口的列表。
ports()
None
-module(helloworld). -export([start/0]). start() -> io:fwrite("~w~n",[erlang:ports()]).
当我们运行上述程序时,我们将得到以下结果。 根据系统的不同,输出会有所不同。
[#Port<0.0>,#Port<0.49>,#Port<0.383>,#Port<0.392>]