帮助理解 lisp 中的这一行

发布于 2024-12-06 16:32:10 字数 369 浏览 0 评论 0原文

(defun dump-db ()
  (dolist (cd *db*)
    (format t "~{~a:~10t~a~%~}~%" cd)))

dolist 让它使用变量 cd 遍历列表 *db* 的每个元素,对吗?

~a 表示以更易读的形式打印它,但这两个让我感到困惑。

~{ ~} 这是否意味着介于两者之间的任何内容都将成为 *db* 的每个元素的格式化方式?

~{~a: 中的 : 是什么?

(defun dump-db ()
  (dolist (cd *db*)
    (format t "~{~a:~10t~a~%~}~%" cd)))

The dolist makes it go through every element of the list *db* with the variable cd right?

and ~a means print it in a more readable form, but these two confuse me.

~{ ~} does this mean anything in between will be the way every element of *db* will be formatted?

What's the : in ~{~a:?

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

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

发布评论

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

评论(1

双马尾 2024-12-13 16:32:10

[]迭代指令~{ [...]告诉FORMAT迭代列表的元素或格式参数的隐式列表。 1

: 是不是一个 format 指令,它只是在每个元素后面逐字打印:

> (format t "~{~a: ~}" '(foo bar))
FOO: BAR: 

[The] iteration directive ~{ [...] tells FORMAT to iterate over the elements of a list or over the implicit list of the format arguments. 1

The : isn't a format directive, it's just printed verbatim in after each element:

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