SICP第3.4节互斥体的实现

发布于 2024-12-21 23:17:38 字数 79 浏览 2 评论 0原文

当作者实现序列化器的互斥部分时,他们使用一个名为 cell 的列表。但列表只包含一个元素,那么为什么不直接使用变量呢?

When the authors implement the mutex part of serializers, they use a list called cell. But the list only contains one element, so why not just use a variable?

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

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

发布评论

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

评论(2

柳若烟 2024-12-28 23:17:38

因为变量不是可以传递给另一个函数的一流值。在 3.4 中,作者实现了一个 make-mutex 函数,该函数使用 clear! 作为辅助函数,该函数接受一个单元格。如果单元格由可变变量表示,则必须在 make-mutex! 内定义 clear! 来关闭该变量。 test-and-set! 辅助函数也是如此。

他们也可以使用一个盒子来代替一个牢房。

Because a variable isn't a first-class value that you can pass to another function. In 3.4, the authors implement a make-mutex function that uses clear! as a helper function, which takes a cell. If the cell were represented by a mutable variable, then clear! would have to be defined inside make-mutex! to close over that variable. The same goes for the test-and-set! helper function.

They also could have used, say, a box instead of a cons cell.

高冷爸爸 2024-12-28 23:17:38

如果在那里使用变量而不是列表,则过程clear!test-and-set!将不起作用,因为Scheme是按值传递的。

If a variable is used there instead of a list, the procedures clear! and test-and-set! won't work since Scheme is pass-by-value.

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