gpt4 book ai didi

Erlang case 语句

转载 作者:行者123 更新时间:2023-12-03 23:24:02 26 4
gpt4 key购买 nike

我有以下 Erlang 代码,当我尝试编译它时,它发出如下警告,但这是有道理的。函数需要两个参数,但我需要匹配“其他一切”而不是 x、y 或 z。

-module(crop).
-export([fall_velocity/2]).

fall_velocity(P, D) when D >= 0 ->
case P of
x -> math:sqrt(2 * 9.8 * D);
y -> math:sqrt(2 * 1.6 * D);
z -> math:sqrt(2 * 3.71 * D);
(_)-> io:format("no match:~p~n")
end.

crop.erl:9: Warning: wrong number of arguments in format call.

我在 io:format 之后尝试了一个匿名变量,但仍然不满意。

最佳答案

以您使用的格式 ~p。这意味着 - 打印值。因此,您必须指定要打印的值。

最后一行案例必须是

_ -> io:format("no match ~p~n",[P])

此外,io:format 返回“ok”。因此,如果 P 不是 x y 或 z,您的函数将返回 'ok' 而不是数值。我建议返回标记值以分离正确和错误返回。的种类
fall_velocity(P, D) when D >= 0 ->
case P of
x -> {ok,math:sqrt(2 * 9.8 * D)};
y -> {ok,math:sqrt(2 * 1.6 * D)};
z -> {ok,math:sqrt(2 * 3.71 * D)};
Otherwise-> io:format("no match:~p~n",[Otherwise]),
{error, "coordinate is not x y or z"}
end.

关于Erlang case 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21083874/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com