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


erlang is_process_alive用法及代码示例


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


这称为is_process_alive(Pid)。 Pid必须引用本地节点上的进程。如果该进程存在并且还处于活动状态,即该进程是否未退出且尚未退出,则返回true。否则,返回false。

用法


is_process_alive(processid)

参数

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

返回值

  • 返回true−如果进程ID存在,则返回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~n",[is_process_alive(Pid)]).

输出

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


true
"hello" "process"

相关用法


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