Lisp Coerce 和 Set 函数解释

发布于 2024-12-27 22:28:12 字数 308 浏览 1 评论 0原文

我尝试直接对解释执行此操作:

(setf example (coerce "blablabla" 'list))

并且工作正常。事实上 (car example) 返回 #\b

但如果我尝试这样做:

(defun myfun (string) ( (setf example (coerce string 'list))))

(myfun "blablabla") 

我不会得到相同的结果!

我该如何修复?

I try to do this directly to the interpret:

(setf example (coerce "blablabla" 'list))

and works fine. Infact (car example) returns #\b

but if I try this:

(defun myfun (string) ( (setf example (coerce string 'list))))

(myfun "blablabla") 

I don't get the same!

How can I fix?

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

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

发布评论

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

评论(1

云巢 2025-01-03 22:28:12

删除 defunsetf 周围的额外括号:

(defun myfun (string)
  (setf example (coerce string 'list)))

现在您将得到相同的结果。请注意,外面的括号是有意义的。在 Lisp 中,它要么被引用,要么必须是函数调用。如果第一个元素(如本例所示)是一个列表,则它不能是要调用的函数,因此会出现错误。

Remove the extra parentheses around the setf in the defun:

(defun myfun (string)
  (setf example (coerce string 'list)))

Now you'll get the same. Note that the outer parenthesis have meaning. In Lisp, either it is quoted, or must be a function call. If the first element is, as in this case, a list, it cannot be a function to call, hence the error.

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