F#模式匹配

2018-12-16 11:07 更新

模式匹配允許您“將數(shù)據(jù)與邏輯結構或結構進行比較,將數(shù)據(jù)分解為組成部分,或以各種方式從數(shù)據(jù)中提取信息”。
換句話說,它提供了一種更靈活和更強大的方法來根據(jù)一系列條件測試數(shù)據(jù),并根據(jù)滿足的條件執(zhí)行一些計算。
從概念上講,它就像一系列if ... then語句。

語法

在高級術語中,模式匹配遵循此語法F# 

match expr with
| pat1 - result1
| pat2 -> result2
| pat3 when expr2 -> result3
| _ -> defaultResult
注意
每個| 符號定義了一個條件。
- >符號表示“如果條件為真,返回此值...”。
_符號提供默認模式,這意味著它匹配所有其他事情,如通配符。
實例
以下示例使用模式匹配語法計算斐波那契數(shù)字 

let rec fib n =
   match n with
   | 0 -> 0
   | 1 -> 1
   | _ -> fib (n - 1) + fib (n - 2)
for i = 1 to 10 do
   printfn "Fibonacci %d: %d" i (fib i)

當你編譯和執(zhí)行程序,它產生以下輸出 

Fibonacci 1: 1
Fibonacci 2: 1
Fibonacci 3: 2
Fibonacci 4: 3
Fibonacci 5: 5
Fibonacci 6: 8
Fibonacci 7: 13
Fibonacci 8: 21
Fibonacci 9: 34
Fibonacci 10: 55

您也可以串聯(lián)多個條件,其中返回相同的值在一起。例如 

例2

let printSeason month =
   match month with
   | "December" | "January" | "February" -> printfn "Winter"
   | "March" | "April" -> printfn "Spring"
   | "May" | "June" -> printfn "Summer"
   | "July" | "August" -> printfn "Rainy"
   | "September" | "October" | "November" -> printfn "Autumn"
   | _ -> printfn "Season depends on month!"

printSeason "February"
printSeason "April"
printSeason "November"
printSeason "July"

當你編譯和執(zhí)行程序,它產生以下輸出 

Winter
Spring
Autumn
Rainy

模式匹配函數(shù)

F#允許你寫的模式匹配使用function關鍵字功能

let getRate = function
   | "potato" -> 10.00
   | "brinjal" -> 20.50
   | "cauliflower" -> 21.00
   | "cabbage" -> 8.75
   | "carrot" -> 15.00
   | _ -> nan (* nan is a special value meaning "not a number" *)

printfn "%g"(getRate "potato")
printfn "%g"(getRate "brinjal")
printfn "%g"(getRate "cauliflower")
printfn "%g"(getRate "cabbage")
printfn "%g"(getRate "carrot")

當你編譯和執(zhí)行程序,它產生以下輸出 

10
20.5
21
8.75
15

向模式添加過濾器或保護

您可以使用關鍵字when為模式添加過濾器或保護。
實例1

let sign = function
   | 0 -> 0
   | x when x < 0 -> -1
   | x when x > 0 -> 1

printfn "%d" (sign -20)
printfn "%d" (sign 20)
printfn "%d" (sign 0)

當你編譯和執(zhí)行程序,它產生以下輸出 

-1
1
0

例2

let compareInt x =
   match x with
   | (var1, var2) when var1 > var2 -> printfn "%d is greater than %d" var1 var2
   | (var1, var2) when var1 < var2 -> printfn "%d is less than %d" var1 var2
   | (var1, var2) -> printfn "%d equals %d" var1 var2

compareInt (11,25)
compareInt (72, 10)
compareInt (0, 0)

當你編譯和執(zhí)行程序,它產生以下輸出 

11 is less than 25
72 is greater than 10
0 equals 0

模式匹配元組

下面的示例演示元組匹配模式 

let greeting (name, subject) =
   match (name, subject) with
   | ("Zara", _) -> "Hello, Zara"
   | (name, "English") -> "Hello, " + name + " from the department of English"
   | (name, _) when subject.StartsWith("Comp") -> "Hello, " + name + " from the department of Computer Sc."
   | (_, "Accounts and Finance") -> "Welcome to the department of Accounts and Finance!"
   | _ -> "You are not registered into the system"

printfn "%s" (greeting ("Zara", "English"))
printfn "%s" (greeting ("Raman", "Computer Science"))
printfn "%s" (greeting ("Ravi", "Mathematics"))

當你編譯和執(zhí)行程序,它產生以下輸出 

Hello, Zara
Hello, Raman from the department of Computer Sc.
You are not registered into the system

模式匹配記錄

下面的例子演示了記錄模式匹配 

type Point = { x: float; y: float }
let evaluatePoint (point: Point) =
   match point with
   | { x = 0.0; y = 0.0 } -> printfn "Point is at the origin."
   | { x = xVal; y = 0.0 } -> printfn "Point is on the x-axis. Value is %f." xVal
   | { x = 0.0; y = yVal } -> printfn "Point is on the y-axis. Value is %f." yVal
   | { x = xVal; y = yVal } -> printfn "Point is at (%f, %f)." xVal yVal

evaluatePoint { x = 0.0; y = 0.0 }
evaluatePoint { x = 10.0; y = 0.0 }
evaluatePoint { x = 0.0; y = 10.0 }
evaluatePoint { x = 10.0; y = 10.0 }

當你編譯和執(zhí)行程序,它產生以下輸出 

Point is at the origin.
Point is on the x-axis. Value is 10.000000.
Point is on the y-axis. Value is 10.000000.
Point is at (10.000000, 10.000000).
以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號