LISP cdr 函数
如果我这样做
(setq x '(NOT (NOT (NOT (NOT A)))) )
(cdr x)
是 (NOT (NOT (NOT A))))
但 (cdr (cdr x))
是 < code>NIL
这是怎么回事?
If I do
(setq x '(NOT (NOT (NOT (NOT A)))) )
(cdr x)
is (NOT (NOT (NOT A))))
but (cdr (cdr x))
is NIL
What's going on here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,不应该。
(cdr x)
应该给你'((NOT (NOT (NOT A))))
。这意味着
(NOT (NOT (NOT A)))
是(cdr x)
的第一个元素。当您再次 cdr 时,它位于单元素列表中,因此您会得到 nil'()
Um, it shouldn't.
(cdr x)
should give you'((NOT (NOT (NOT A))))
.Which means
(NOT (NOT (NOT A)))
is the first element of(cdr x)
. When you cdr again it's on a one-element list, so you get nil'()