Erlang:为什么会因“badarith”而失败?例外?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你不能添加原子。 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
fun
s at all, you just need to capitalize your variable names.在 erlang 中变量以大写字母开头。
以小写字母开头的单词是原子。
Variables start with Capital Letters in erlang.
words starting with lower case letters are atoms.