不确定这条线的作用
(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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 ofparse-integer
if that call succeeds in parsing an integer, or 0 if not.