gpt4 book ai didi

function - 如何在 elisp 中的任意点退出函数

转载 作者:行者123 更新时间:2023-12-02 13:50:30 27 4
gpt4 key购买 nike

这是一个简单的问题,但不知何故我无法通过谷歌搜索找到答案:

如果不满足某些条件,如何在任意执行点退出函数。例如(我在这里使用“(退出)”作为替代):

(defun foo ()
(progn (if (/= a1 a2)
(exit) ; if a1!=a2, exit the function somehow
t)
(blahblah...)))

最佳答案

在elisp中,您可以使用catchthrowinstead of cl's block and return-from .

(defun foo ()
(catch 'my-tag
(when (not (/= a1 a2))
(throw 'my-tag "non-local exit value"))
"normal exit value"))

参见 C-hig (elisp) 非本地退出 RET

关于function - 如何在 elisp 中的任意点退出函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16248620/

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