用于打开输入通道的Ocaml异常处理

时间:2010-03-07 13:50:41

标签: exception pattern-matching ocaml matching

作为Ocaml的初学者,我有这个当前的工作代码:

...
let ch_in = open_in input_file in
try
    proc_lines ch_in
with End_of_file -> close_in ch_in;;

现在我想为不存在的输入文件添加错误处理,我写道:

let ch_in = try Some (open_in input_file) with _ -> None in
match ch_in with
| Some x -> try proc_lines x with End_of_file -> close_in x
| None -> () ;;

并收到错误消息:此模式匹配'a option类型的值 但是在这里用于匹配最后一行的exn 类型的值。如果我将替换为 _ ,我会收到有关不完整匹配的错误。

我读到 exn 是异常类型。我确定我不明白这里到底发生了什么,所以请指出正确的方向。谢谢!

1 个答案:

答案 0 :(得分:6)

在其他模式匹配中嵌入模式匹配时,您需要使用( ... )begin ... end(括号的语法糖)来嵌入嵌入的匹配:

let ch_in = try Some (open_in input_file) with _ -> None in
match ch_in with
| Some x -> (try proc_lines x with End_of_file -> close_in x)
| None -> () ;;