gpt4 book ai didi

clojure - 在 Clojure 中捕获多个异常并进行相同的处理

转载 作者:行者123 更新时间:2023-12-02 11:29:55 27 4
gpt4 key购买 nike

这有点类似于this question ,但我想捕获多个异常并同样处理它们。在 Ruby 中,我可以编写

begin
rand(2) == 0 ? ([] + '') : (foo)
rescue TypeError, NameError => e
puts "oops: #{e.message}"
end

我可以在 Clojure 中做同样的事情吗?现在,我let一个函数并在每个catch主体中调用它。

最佳答案

(ns mastering.stackoverflow
(:use
[slingshot.slingshot :only [try+]]))


(try+
; ...
(catch (comp #{TypeError NameError} class) _ "caught"))

The slingshot library可以在 github 上找到。

关于clojure - 在 Clojure 中捕获多个异常并进行相同的处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51397412/

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