gpt4 book ai didi

syntax - 在OCaml中处理多种异常类型

转载 作者:行者123 更新时间:2023-12-04 13:14:32 25 4
gpt4 key购买 nike

以下可能吗?

try
(* danger zone *)
with Not_found e ->
(* code to handle not found *)
with t ->
(* code to handle all other issues *)

如果将其键入顶层,则会在第二个 with上收到语法错误。也许有一些我不知道的语法?

是在另一个 try之前添加前缀以匹配每个 with的首选方法?

最佳答案

with部分是一系列模式,因此您可以这样编写:

try
(* dangerous code area *)
with
| Not_found -> (* Not found handling code *)
| t -> (* Handle other issues here *)

关于syntax - 在OCaml中处理多种异常类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10307557/

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