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模块中的函数默认从标准输入中读取,并写到标准输出中.我们可以通过传递一个参数来改变它,例如:stderr
(目的是写入标准错误设备):
iex> IO.puts :stderr, "hello world"
hello world
:ok
以上内容是否对您有帮助:
更多建议: