當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。