“重新定义模块”是什么意思? erlang 中的错误是什么意思?

发布于 2024-11-09 09:20:32 字数 287 浏览 0 评论 0原文

我将 mochijson2.erl 模块添加到我的ejabberd src 目录,但是当我尝试编译代码时出现以下错误:

 ./mochijson2.erl:8: redefining module

Where Could this module be Defined?我的来源中没有它。

I added the mochijson2.erl module to my ejabberd src directory but when I try to compile the code I get the following error:

 ./mochijson2.erl:8: redefining module

Where could this module be defined? I don't have it in my source.

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

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

发布评论

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

评论(1

野味少女 2024-11-16 09:20:32

这意味着您的模块有两个 -module(...) 指令,这是不允许的。检查模块的源代码。

It means your module has two -module(...) directives, which is not allowed. Check the source code of the module.

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