Ruby 的“绑定”是吗?和作用域链一样吗?

发布于 2024-09-08 06:12:11 字数 211 浏览 6 评论 0原文

Ruby 的 eval() 可以像

def showblock(&block)
  puts eval("i * 3", block)
end

其中 block 是传递到函数中的块。

除了块之外,还可以传入绑定对象。绑定对象和讨论Javascript闭包时经常提到的“作用域链”是一样的吗?

Ruby's eval() can be like

def showblock(&block)
  puts eval("i * 3", block)
end

where block is the block passed into the function.

Instead of a block, a binding object can be passed in as well. Is the binding object the same as what is called the "scope chain" that is mentioned a lot when Javascript closure is discussed?

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

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

发布评论

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

评论(1

戏剧牡丹亭 2024-09-15 06:12:11

经过一番研究,我会说是的,它们似乎是相关的概念。

JS 中的作用域链维护了一系列执行上下文(变量绑定等),链的一端是当前执行作用域的上下文,另一端是全局作用域。创建引用自由变量的闭包需要保留该上下文列表,只要该闭包是可访问的。

Ruby Binding 对象的文档说:

Binding类的对象封装
某些处的执行上下文
代码中的特定位置和
保留此上下文以供将来使用。
变量、方法、self 的值,
可能还有一个迭代器块
在这种情况下可以访问的是
全部保留。绑定对象可以是
使用 Kernel#binding 创建,并且是
可供回调使用
内核#set_trace_func。

这些绑定对象可以作为
内核的第二个参数#eval
方法、搭建环境
进行评估。

我不太了解 Binding 的内部实现方式,但它似乎具有相同的目的:存储上下文以供将来评估。

After some research, I would say yes, they seem to be related concepts.

The scope chain in JS maintains a list of execution contexts (variable bindings and the like), with the context of the currently executing scope at one end of the chain, and the global scope on the other. Creating a closure that references a free variable necessitates holding on to that list of contexts as long as the closure is reachable.

The Ruby Binding object's documentation says:

Objects of class Binding encapsulate
the execution context at some
particular place in the code and
retain this context for future use.
The variables, methods, value of self,
and possibly an iterator block that
can be accessed in this context are
all retained. Binding objects can be
created using Kernel#binding, and are
made available to the callback of
Kernel#set_trace_func.

These binding objects can be passed as
the second argument of the Kernel#eval
method, establishing an environment
for the evaluation.

I don't know as much about the internals of how Binding is implemented, but it appears to serve the same purpose: storing context for future evaluation.

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