0

我有这个代码:

                    io:format("id retour: ~w\n",[Idretour]),

我想知道Idretour的类型

因为我想添加这个测试:if Idretour =:= 40 ->

可能这条线可以帮助我们了解Idretour的类型

io:format("id retour: ~w\n",[Idretour]),
4

1 回答 1

0

if Idretour =:= 40无论是什么类型的,您都可以进行测试Idretour

我认为您正在寻找的是:

case Idretour of
    Int when is_integer(Idretour) -> do_domething_with_int;
    _ -> not_an_int
end
于 2013-02-19T15:31:04.017 回答