Erlang - ports 方法

返回本地节点上所有端口的列表。

语法

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>]

❮ erlang_bifs.html