当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


erlang is_pid用法及代码示例


Erlang is_pid函数/方法的用法及代码示例。


此方法用于确定进程ID是否存在。

用法


Is_pid(processid)

参数

  • processid−这是进程ID,需要检查是否存在。

返回值

如果进程ID存在,则返回true,否则将返回false。

例如


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

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

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

输出

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


true"hello" "process"

相关用法


注:本文由纯净天空筛选整理自 erlang is_pid。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。