成员和默认参数

发布于 2024-09-02 23:01:25 字数 164 浏览 2 评论 0原文

在下面的 Lisp REPL 交互中:

CL-USER> (defparameter *unison* 0)
*UNISON*
CL-USER> (member *unison* '(*unison*))
NIL

为什么返回 nil?

In the following Lisp REPL interaction:

CL-USER> (defparameter *unison* 0)
*UNISON*
CL-USER> (member *unison* '(*unison*))
NIL

why is nil returned?

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

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

发布评论

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

评论(1

好听的两个字的网名 2024-09-09 23:01:25

因为 *unison* 变量绑定到 0,并且列表由于被引用而只有一个 *unison* 符号。尝试比较一下:

(member *unison* (list *unison*))

这实际上会计算第二个返回 0*unison* ,从而产生一个 (0) 列表。

Because the *unison* variable is bound to 0, and the list has only a *unison* symbol since it's quoted. Try this in comparison:

(member *unison* (list *unison*))

This will actually evaluate the second *unison* which returns 0, resulting in a (0) list.

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