Erlang-unregister

提供:Dev Guides
移動先:案内検索

Erlang-登録解除

これは、システムでプロセスを登録解除するために使用されます。

構文

unregister(atom)

パラメーター

  • atom -これは、プロセスに付ける登録名です。

戻り値

None

例えば

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

出力

上記のプログラムを実行すると、次の結果が得られます。

<0.55.0>
"hello"
Undefined