gpt4 book ai didi

lisp - 'cond' 能否完全替代 'if' 语句?

转载 作者:太空宇宙 更新时间:2023-11-03 18:41:05 24 4
gpt4 key购买 nike

我知道 'cond' 是基于 'if' 的,但是 'cond' 能做 'if' 能做的所有事情吗?谢谢

最佳答案

是的。任何条件

(if x y z)

使用 if 可以转换为使用 cond 的等效条件:

(cond (x y)
(t z))

例如,考虑以下内容:

(if (= 1 2) (format t "crazy~%") (format t "sane~%"))

上面的代码可以转化为:

(cond ((= 1 2) (format t "crazy~%"))
(t (format t "sane~%")))

关于lisp - 'cond' 能否完全替代 'if' 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7867794/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com