Erlang 輸出至終端

2022-07-07 15:38 更新

Erlang輸出至終端

用例子來說明如何格式化輸出到終端再好不過了,因此下面就用一個簡單的示例程序來說明如何使用 io:format 函數。與其它導出的函數一樣,你可以在 shell 中測試 io:format 函數:

31> io:format("hello world~n", []).
hello world
ok
32> io:format("this outputs one Erlang term: ~w~n", [hello]).
this outputs one Erlang term: hello
ok
33> io:format("this outputs two Erlang terms: ~w~w~n", [hello, world]).
this outputs two Erlang terms: helloworld
ok
34> io:format("this outputs two Erlang terms: ~w ~w~n", [hello, world]).
this outputs two Erlang terms: hello world
ok

format/2 (2 表示兩個參數)接受兩個列表作為參數。一般情況下,第一個參數是一個字符串(前面已經說明,字符串也是列表)。除了 ~w 會按順序被替換為第二個列表中的的項以外,第一個參數會被直接輸出。每個 ~n 都會導致輸出換行。如果正常輸出,io:formate/2 函數會返回個原子值 ok。與其它 Erlang 函數一樣,如果發(fā)生錯誤會直接導致函數崩潰。這并 Erlang 系統中的錯誤,而是經過深思熟慮后的一種策略。稍后會看到,Erlang 有著非常完善的錯誤處理機制來處理這些錯誤。如果要練習,想讓 io:format 崩潰并不是什么難事兒。不過,請注意,io:format 函數崩潰并不是說 Erlang shell 本身崩潰了。

以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號