当前位置: 首页 > 文档资料 > Erlang 中文教程 >

unregister

优质
小牛编辑
118浏览
2023-12-01

这用于取消注册系统中的进程。

语法 (Syntax)

unregister(atom)

参数 (Parameters)

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

返回值 (Return Value)

没有

例如 (For example)

-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)]), 
   unregister(myprocess), 
   io:fwrite("~p~n",[whereis(myprocess)]).

输出 (Output)

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

<0.55.0>
"hello"
Undefined