Elixir IO模塊

2023-12-15 14:09 更新

?IO?模塊是Elixir中的主要機制,用于在標準輸入/輸出(:stdio),標準錯誤(:stderr),文件以及其它IO設備中進行讀寫.該模塊的作用非常明顯:

iex> IO.puts "hello world"
hello world
:ok
iex> IO.gets "yes or no? "
yes or no? yes
"yes\n"

IO模塊中的函數(shù)默認從標準輸入中讀取,并寫到標準輸出中.我們可以通過傳遞一個參數(shù)來改變它,例如?:stderr?(目的是寫入標準錯誤設備):

iex> IO.puts :stderr, "hello world"
hello world
:ok


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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號