在 Erlang 中,如何从模块内部编译模块?

发布于 2024-08-25 22:22:33 字数 99 浏览 5 评论 0原文

我已经尝试过::

c(module_name).

但这只能在外壳程序中工作,并且当我尝试从模块内运行它时会出现错误。

I have tried :

c(module_name).

: but this only works from the shell, and gives an error when I try to run it from within a module.

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

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

发布评论

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

评论(2

关于从前 2024-09-01 22:22:33

如果您确实想要这种行为,c:c(module_name) 将调用 shell 调用的相同函数。我会犹豫是否将调用 user_default (c) 函数的代码放入生产代码中,因此您可能需要查看 函数的源代码 并将其复制到您自己的代码中,这样您就不会受到行为更改的影响未来的 Erlang 版本。

If you want exactly that behaviour, c:c(module_name) will call the same function called by the shell. I would hesitate to put code that calls user_default (c) functions in production code, so you might want to look at the source for the function and replicate it in your own code so you don't get bitten by a behaviour change in a future erlang release.

北音执念 2024-09-01 22:22:33

您可能想具体查看compile 模块和compile:file/2 函数。

You might want to have a look to the compile module and to the compile:file/2 function in specific.

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