Erlang:为什么会因“badarith”而失败?例外?

发布于 2024-08-05 16:43:10 字数 337 浏览 1 评论 0原文

Erlang 中可以实现闭包吗?

例如,我如何翻译Scheme 中的这段代码?

(define (make-adder n)
  (lamdba (x) (+ x n)))

我已经尝试过以下操作,但我显然错过了一些东西。

make_adder(n) ->
    fun (x) -> x + n end.

编译此错误

Warning: this expression will fail with a 'badarith' exception

Is it possible to implement a closure in Erlang?

For example, how would I translate this snippet from Scheme?

(define (make-adder n)
  (lamdba (x) (+ x n)))

I've tried the following, but I'm clearly missing something.

make_adder(n) ->
    fun (x) -> x + n end.

Compiling this gives the error

Warning: this expression will fail with a 'badarith' exception

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

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

发布评论

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

评论(3

花开浅夏 2024-08-12 16:43:10

你不能添加原子。 erlang 中变量以大写字母开头。以小写字母开头的单词是原子。

换句话说,你的问题与fun根本无关,你只需要大写变量名即可。

You can't add atoms. Variables start with Capital Letters in erlang. words starting with lower case letters are atoms.

In other words your problem is not related to funs at all, you just need to capitalize your variable names.

输什么也不输骨气 2024-08-12 16:43:10
make_adder(N) ->
  fun (X) -> X + N end.
make_adder(N) ->
  fun (X) -> X + N end.
铁轨上的流浪者 2024-08-12 16:43:10

在 erlang 中变量以大写字母开头。
以小写字母开头的单词是原子。

Variables start with Capital Letters in erlang.
words starting with lower case letters are atoms.

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