不确定这条线的作用

发布于 2024-12-07 05:02:29 字数 349 浏览 0 评论 0原文

(or (parse-integer (prompt-read "Rating") :junk-allowed t) 0)

这条线让我很困惑。如果您需要遵循,完整的程序在这里: http://paste.lisp.org/display/124929

'Parse-integer' 会将字符串转换为整数,对吗?如果可能的话。而 ':junk-allowed t' 让它以某种方式接受垃圾字符串,对吗?

但不确定最后的“或”和 0 是什么。

谢谢。

(or (parse-integer (prompt-read "Rating") :junk-allowed t) 0)

This line confuses me quite a bit. the full program is here if you need it to follow: http://paste.lisp.org/display/124929

'Parse-integer' will turn a string into and integer right? if possible. And ':junk-allowed t' makes it accept junk strings somehow right?

Not sure what the 'or' and the 0 at the end are though.

Thanks.

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

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

发布评论

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

评论(1

兔姬 2024-12-14 05:02:29

or 遍历传递给它的表单,按顺序计算它们,直到找到一个不计算为 nil 的表单,然后返回该结果。因此,如果该调用成功解析整数,则返回 parse-integer 的结果,否则返回 0。

or goes through the forms passed to it, evaluates them in order until it finds one that does not evaluate to nil, and returns that result. So this will return the result of parse-integer if that call succeeds in parsing an integer, or 0 if not.

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