Erlang-whereis

提供:Dev Guides
2020年6月23日 (火) 00:47時点におけるMaintenance script (トーク | 投稿記録)による版 (Imported from text file)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

アーラン-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"