我正在尝试在erlang中调用一个函数(来自外部模块)。两个梁文件都位于同一目录中。
-module(drop2).
-export([fall_velocity/1]).
fall_velocity(Distance) -> math:sqrt(2 * 9.8 * Distance).
然后我正在打电话
-module(ask).
-export([term/0]).
term() ->
Input = io:read("Enter {x,distance} ? >>"),
Term = element(2,Input),
drop2:fall_velocity(Term).
它给出了以下错误。我测试了各个模块的错误。它正在编译中没有任何错误或警告。
Eshell V5.10.2 (abort with ^G)
1> ask:term().
Enter {x,distance} ? >>{test,10}.
** exception error: an error occurred when evaluating an arithmetic expression
in function drop2:fall_velocity/1 (drop2.erl, line 3)
不确定为什么会抛出算术表达式错误。
答案 0 :(得分:3)
您可以阅读documentation以确定结果为{ok, Term}
。您可以在控制台中尝试io:read/1
功能,然后您会看到以下内容:
1> io:read("Enter > ").
Enter > {test, 42}.
{ok,{test,42}}
2>
这意味着您需要以不同的方式解构io:read/1
的结果,例如:
-module(ask).
-export([term/0]).
term() ->
{ok, {_, Distance}} = io:read("Enter {x, distance} > "),
drop2:fall_velocity(Distance).