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


erlang pid_to_list用法及代码示例


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


它将进程ID转换为列表。

用法


Pid_to_list(processid)

参数

  • processid−这是需要转换为列表的进程ID。

返回值

从进程ID返回列表。

例如


-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",[pid_to_list(Pid)]).

输出

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


"<0.55.0>"
"hello" "process"

相关用法


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