Erlang-whereis


它被称为 whereis(Name)。返回使用该名称注册的进程的 pid。

句法

whereis(atom,pid)

参数

  • atom - 这是给予进程的注册名称。

返回值

绑定到原子的进程 ID。

例如

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

call(Arg1, Arg2) -> 
   io:fwrite("~p~n",[Arg1]). 

start() -> 
   Pid = spawn(?MODULE, call, ["hello", "process"]), 
   register(myprocess, Pid), 
   io:fwrite("~p~n",[whereis(myprocess)]).

输出

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

<0.55.0>
"hello"
erlang_processes.htm