SICP 第 4.1.6 节

发布于 2024-07-24 08:39:45 字数 423 浏览 1 评论 0原文

我需要一些帮助来理解 SICP 第 4.1.6 节中有关内部定义的材料。

我理解定义相互递归函数时提出的问题。 但我不明白如何通过将以下 lambda 表达式转换

(lambda <vars >
  (define u <e1 >)
  (define v <e2 >)
  <e3 >)

为来解决这个问题:

(lambda <vars >
  (let ((u ’*unassigned*)
        (v ’*unassigned*))
    (set! u <e1 >)
    (set! v <e2 >)
    <e3 >))

有人可以帮我吗? 谢谢。

I need some help in understanding the material in SICP's section 4.1.6 on Internal definitions.

I understand the problem raised when mutually recursive functions are defined. But i dont understand how it is solved by transforming the following lambda expression

(lambda <vars >
  (define u <e1 >)
  (define v <e2 >)
  <e3 >)

into:

(lambda <vars >
  (let ((u ’*unassigned*)
        (v ’*unassigned*))
    (set! u <e1 >)
    (set! v <e2 >)
    <e3 >))

Can someone help me out here? Thanks.

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

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

发布评论

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

评论(1

不念旧人 2024-07-31 08:39:45

如果 尝试以第一种形式引用 v,则会失败 - v 尚未定义(尚未定义 /em>,但部分是重要的部分)。 但在第二种形式中,当您到达 时,v 已定义(尽管不是但已分配 - 但没关系!-)。

If <e1> tries referring to v in the first form, it fails -- v is not defined (not yet, but the not part is the important one). But in the second form, v is defined by the time you get to <e1> (though not yet assigned -- but that's ok!-).

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