Erlang throw 语句在函数处理程序中不起作用

发布于 2024-11-25 10:38:50 字数 519 浏览 1 评论 0原文

我试图在函数处理程序内部抛出错误并在外部捕获它。如果句柄是在本地创建的,则效果很好。如果我导出该函数并通过其模块名称访问它,我会收到一个 {error,badarg}。

-module(mymodule).
-export([myfun/1]).


myfun(Any) -> throw(Any).


mytestfun1() ->
try
    FunHandler=fun myfun/1,
    FunHandler("myerr")
catch
    W:E -> {W, E}
end.
% returns {throw,"myerr"} as it should


mytestfun2() ->
try
    FunHandler=fun mymodule:myfun/1,
    FunHandler("myerr")
catch
    W:E -> {W, E}
end.
% returns {error,badarg} instead

我完全不明白为什么会发生这种情况。有人有主意吗?

I am trying to throw an error inside a function handler and catch it outside. It works fine if the handle is created localy. If I export the function and access it by its module name I get an {error,badarg}.

-module(mymodule).
-export([myfun/1]).


myfun(Any) -> throw(Any).


mytestfun1() ->
try
    FunHandler=fun myfun/1,
    FunHandler("myerr")
catch
    W:E -> {W, E}
end.
% returns {throw,"myerr"} as it should


mytestfun2() ->
try
    FunHandler=fun mymodule:myfun/1,
    FunHandler("myerr")
catch
    W:E -> {W, E}
end.
% returns {error,badarg} instead

I absolutely do not understand why this happens. Anybody got an idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

呆° 2024-12-02 10:38:50

这是 Eclipse IDE Erlide 的一个错误。在调试模式下,它会替换所有函数句柄。在这种情况下,它做了一些错误的事情。
我将错误发布在:
http://sourceforge.net/tracker/?func=detail&aid=3373292&group_id=58889&atid=489191

This is a bug of the Eclipse IDE Erlide. In its debug mode it replaces all function handles. In this case it does something wrong.
I posted the Bug under:
http://sourceforge.net/tracker/?func=detail&aid=3373292&group_id=58889&atid=489191

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文