"not one" -6ren">
gpt4 book ai didi

syntax - F# 显式匹配与函数语法

转载 作者:行者123 更新时间:2023-12-03 05:15:06 25 4
gpt4 key购买 nike

很抱歉标题含糊不清,但这个问题的一部分是这两种语法样式的名称:

let foo1 x = 
match x with
| 1 -> "one"
| _ -> "not one"

let foo2 = function
| 1 -> "one"
| _ -> "not one"

另一部分是两者之间有什么区别,以及我什么时候想使用其中一个?

最佳答案

第二种语法的优点是,当在 lambda 中使用时,它可能会更加简洁和可读。

List.map (fun x -> match x with | 1 -> "one" | _ -> "not one") [0;1;2;3;1]

对比

List.map (function 1 -> "one" | _ -> "not one") [0;1;2;3;1]

关于syntax - F# 显式匹配与函数语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1839016/

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