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 is_pid用法及代碼示例
- erlang is_process_alive用法及代碼示例
- erlang registered用法及代碼示例
- erlang self用法及代碼示例
- erlang register用法及代碼示例
- erlang whereis用法及代碼示例
- erlang unregister用法及代碼示例
注:本文由純淨天空篩選整理自 erlang pid_to_list。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。