io:format的badarg异常

时间:2018-12-04 07:40:48

标签: io erlang pipe

我想编写一个函数,该函数可以接受一系列用\n分隔的数字 并将它们打印在列表中。但是,我无法取得badarg错误的任何进展。如何继续执行此代码?想法是将数字传送到此程序,但是当我传递多个数字时,会出现此错误:

exception error: bad argument
  in function  io:format/3
     called as io:format(<0.62.0>,"~w~n",[3,2,1])
  in call from erl_eval:local_func/6 (erl_eval.erl, line 564)
  in call from escript:interpret/4 (escript.erl, line 788)
  in call from escript:start/1 (escript.erl, line 277)
  in call from init:start_em/1 
  in call from init:do_boot/3 

这是我的代码:

-module(prog).
-export([read_stdin/1]).
-export([main/0]).

read_stdin(Acc) ->
    case io:fread(standard_io, '', "~d") of
        eof -> Acc;
        {ok, Line} -> read_stdin(Line ++ Acc)
    end.

main() ->
    Data = read_stdin([]),
    io:format("~w~n", Data).

1 个答案:

答案 0 :(得分:6)

io:format的第二个参数是值的列表。即使仅使用一个使用值的控制序列(在这种情况下为~w),也需要将值包装在列表中:

    io:format("~w~n", [Data]).