调用/应用 lambda 与函数调用 - Ruby 中的语法是不同的。为什么?
我对 Ruby 还算陌生,并且仍在尝试了解一些语言设计原则。如果我没猜错的话,那么 Ruby 中的 lambda 表达式调用必须使用方括号,而“常规”函数调用则使用“常规”/圆括号。
语法不同是否有特殊原因?或者,换句话说,(为什么)调用者应该知道他们是调用函数还是应用 lambda 表达式?
I am kinda new to Ruby and still trying to understand some of the language design principles. IF I've got it right, the lambda expression call in Ruby must be with square braces, while the "regular" function call is with "regular"/round braces.
Is there a special reason that the syntax is different? Or, in other words, (why) should the caller be aware whether they call a function or apply a lambda expression?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
常规 Ruby 方法调用使用
()
而不是用于块的大括号。如果您不喜欢使用[]
来调用 lambda,则始终可以使用call
方法。示例:
编辑
在较新版本的 Ruby 中也是如此:
至于为什么不能只执行
by_two(5)
,当 Ruby 看到裸字时,它首先尝试将其解析为局部变量,如果作为方法失败。Regular Ruby method calls use
()
not curly braces which are for blocks. If you don't like[]
for calling a lambda, you can always use thecall
method.Example:
Edit
In newer version of Ruby also:
As to why you can't just do
by_two(5)
, when Ruby sees a bareword it first tries to resolve it as a local variable and if that fails as a method.因为在 Ruby 中,方法不是 lambda(例如在 JavaScript 中)。
方法总是属于对象,可以继承(通过子类化或混合),可以在对象的特征类中覆盖,并且可以被赋予一个块(这是一个 lambda)。它们有自己的变量范围。方法定义示例:
然而,lambda/procs 是普通的闭包,可能存储在变量中 - 没有别的:
Ruby 将这两种方法与强大的语法结合在一起,例如传递块:
Because in Ruby, methods are not lambdas (like, for example, in JavaScript).
Methods always belong to objects, can be inherited (by sub-classing or mixins), can be overwritten in an object's eigenclass and can be given a block (which is a lambda). They have their own scope for variables. Example method definition:
However lambdas/procs are plain closures, maybe stored in a variable - nothing else:
Ruby combines both approaches with a powerful syntax, for example, passing blocks:
如果您想要括号,可以
注意
by_two
和(5)
之间的.
。If you want brackets, you can do
Note the
.
betweenby_two
and(5)
.