如何加载二进制模块

发布于 2024-12-10 17:47:56 字数 297 浏览 0 评论 0原文

接下来编译得很好

-module(cipher_id).
-export([a1/1]).

a1(I) ->
    binary:encode_unsigned(I).

但后来我尝试调用 cipher_id:a1(I) 它崩溃了

**异常错误:未定义函数二进制:encode_unsigned/1

如果尝试从 erl shell 中的二进制模块调用函数,也会发生同样的情况。 m() 输出不存在二进制模块的列表。

Next compiles well

-module(cipher_id).
-export([a1/1]).

a1(I) ->
    binary:encode_unsigned(I).

But then i try to call cipher_id:a1(I) it crashes with

** exception error: undefined function binary:encode_unsigned/1

The same happened if try to call function from binary module in erl shell. m() outputs lists in which no binary module present.

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

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

发布评论

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

评论(1

明媚如初 2024-12-17 17:47:56

来自二进制模块的Erlang文档:

该模块根据EEP(Erlang增强提案)31实现。

来自提案页面:

状态:最终/R14A 提案已在 OTP 版本 R14A 中实施

您正在使用 R13B03。我的感觉是你需要升级到更新的 Erlang 安装。 Ubuntu 的二进制文件位于:

http://www.erlang-solutions。 com/section/132/erlang-otp-packages

From the Erlang documentation of the binary module:

The module is implemented according to the EEP (Erlang Enhancement Proposal) 31.

From the proposal page:

Status: Final/R14A Proposal is implemented in OTP release R14A

You're using R13B03. My feeling is that you need to upgrade to a newer Erlang installation. Binaries for Ubuntu are available at:

http://www.erlang-solutions.com/section/132/erlang-otp-packages

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