Elixir IO模塊

2023-12-15 14:09 更新

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

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

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

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


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號