内容简介:F#开发教程(12):函数化编程(十一)
异常和异常处理
F#中定义异常和定义联合类似,异常处理类似于模式匹配。定义异常使用excpetion关键字,然后是异常的名称,再次为可选的异常数据类型。多个类型使用*分隔(其实是元组类型)
例如
exception WrongSecond of int
使用raise来抛出异常。F#中还有一个failwith函数可以抛出异常。
> exception WrongSecond of int - let primes = [ 2; 3; 5; 7; 11; 13; 17; 19; 23; 29; 31; 37; 41; 43; 47; 53; 59 ];; exception WrongSecond of int val primes : int list = [2; 3; 5; 7; 11; 13; 17; 19; 23; 29; 31; 37; 41; 43; 47; 53; 59] > let testSecond() = - try - let currentSecond = System.DateTime.Now.Second - if List.exists (fun x -> x = currentSecond) primes then - failwith "A prime second" - else - raise (WrongSecond currentSecond) - with - WrongSecond x -> - printf "The current was %i,which is not prime" x;; val testSecond : unit -> unit > testSecond();; The current was 1,which is not primeval it : unit = ()
try 和 with 用来处理异常,将可能会出现异常的表达式放在try 和 with 之间。with之后定义一个或多个异常类型的模式匹配。和普通的模式匹配最大的差异在于异常的模式匹配在没有没有完全定义所有异常模式处理时编译器不会给出警告,这是因为任何没有处理的异常都会逐步向上传播。
F#也支持finally,它和try一起使用。但finally不能和with一同使用。
// function to write to a file let writeToFile() = // open a file let file = System.IO.File.CreateText("test.txt") try // write to it file.WriteLine("Hello F# users") finally // close the file, this will happen even if // an exception occurs writing to the file file.Dispose() // call the function writeToFile()
以上所述就是小编给大家介绍的《F#开发教程(12):函数化编程(十一)》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 函数式编程之数组的函数式编程
- 函数式编程 – 函数式编程如何影响您的编码风格?
- 纯函数:函数式编程入门
- 深入理解 Java 函数式编程,第 1 部分: 函数式编程思想概论
- 思想交融,Android中的函数式编程(2):什么是函数式编程
- 编程范式 —— 函数式编程入门
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
The C Programming Language
Brian W. Kernighan、Dennis M. Ritchie / Prentice Hall / 1988-4-1 / USD 67.00
Presents a complete guide to ANSI standard C language programming. Written by the developers of C, this new version helps readers keep up with the finalized ANSI standard for C while showing how to ta......一起来看看 《The C Programming Language》 这本书的介绍吧!