processes
优质
小牛编辑
123浏览
2023-12-01
返回与本地节点上当前存在的所有进程相对应的进程标识符列表。
语法 (Syntax)
processes()
参数 (Parameters)
None
返回值 (Return Value)
返回与本地节点上当前存在的所有进程相对应的进程标识符列表。
例如 (For example)
-module(helloworld).
-export([start/0]).
start() ->
io:fwrite("~p~n",[erlang:processes()]).
输出 (Output)
当我们运行上述程序时,我们将得到以下结果。 根据系统的不同,输出会有所不同。
[<0.0.0>,<0.2.0>,<0.3.0>,<0.6.0>,<0.7.0>,<0.9.0>,<0.10.0>,<0.11.0>,<0.12.0>,
<0.13.0>,<0.14.0>,<0.15.0>,<0.16.0>,<0.18.0>,<0.19.0>,<0.20.0>,<0.21.0>,
<0.22.0>,<0.23.0>,<0.24.0>,<0.25.0>,<0.26.0>]