1
1> foo:inter()。 **異常錯誤:錯誤的參數 在函數foo:間/ 0(foo.erl,7號線)嘗試捕捉list_to_integer不捕獲錯誤
-module(foo).
-compile(export_all).
inter() ->
A = <<"5a">>,
B = binary_to_list(A),
try list_to_integer(B) of
Result -> Result
catch
_ -> {error, bad_integer}
end.
我有望獲得{錯誤,bad_integer}。