Erlang - self 方法

最常用的 BIF 之一,返回调用进程的 pid。

语法

self()

参数

None

返回值

返回调用进程的 pid。

例如

-module(helloworld). 
-export([start/0]). 

start() -> 
   io:fwrite("~p~n",[self()]).

输出

当我们运行上面的程序时,我们将得到以下结果。

<0.2.0>

❮ erlang_processes.html