F#
Implementazione del modello di progettazione in F #
Ricerca…
Programmazione basata sui dati in F #
Grazie all'inferenza di tipo e all'applicazione parziale nella programmazione F#
data-driven è succinta e leggibile.
Immaginiamo che stiamo vendendo un'assicurazione auto. Prima di provare a venderlo a un cliente, proviamo a determinare se il cliente è un potenziale cliente valido per la nostra azienda controllando il sesso e l'età del cliente.
Un semplice modello cliente:
type Sex =
| Male
| Female
type Customer =
{
Name : string
Born : System.DateTime
Sex : Sex
}
Successivamente vogliamo definire un elenco di esclusione (tabella) in modo che se un cliente corrisponde a qualsiasi riga nell'elenco di esclusione, il cliente non può acquistare la nostra assicurazione auto.
// If any row in this list matches the Customer, the customer isn't eligible for the car insurance.
let exclusionList =
let __ _ = true
let olderThan x y = x < y
let youngerThan x y = x > y
[|
// Description Age Sex
"Not allowed for senior citizens" , olderThan 65 , __
"Not allowed for children" , youngerThan 16 , __
"Not allowed for young males" , youngerThan 25 , (=) Male
|]
A causa dell'inferenza di tipo e dell'applicazione parziale, l'elenco di esclusione è flessibile ma facile da comprendere.
Infine, definiamo una funzione che utilizza l'elenco di esclusione (una tabella) per dividere i clienti in due bucket: clienti potenziali e negati.
// Splits customers into two buckets: potential customers and denied customers.
// The denied customer bucket also includes the reason for denying them the car insurance
let splitCustomers (today : System.DateTime) (cs : Customer []) : Customer []*(string*Customer) [] =
let potential = ResizeArray<_> 16 // ResizeArray is an alias for System.Collections.Generic.List
let denied = ResizeArray<_> 16
for c in cs do
let age = today.Year - c.Born.Year
let sex = c.Sex
match exclusionList |> Array.tryFind (fun (_, testAge, testSex) -> testAge age && testSex sex) with
| Some (description, _, _) -> denied.Add (description, c)
| None -> potential.Add c
potential.ToArray (), denied.ToArray ()
Per concludere, definiamo alcuni clienti e vediamo se sono potenziali clienti per la nostra assicurazione auto tra di loro:
let customers =
let c n s y m d: Customer = { Name = n; Born = System.DateTime (y, m, d); Sex = s }
[|
// Name Sex Born
c "Clint Eastwood Jr." Male 1930 05 31
c "Bill Gates" Male 1955 10 28
c "Melina Gates" Female 1964 08 15
c "Justin Drew Bieber" Male 1994 03 01
c "Sophie Turner" Female 1996 02 21
c "Isaac Hempstead Wright" Male 1999 04 09
|]
[<EntryPoint>]
let main argv =
let potential, denied = splitCustomers (System.DateTime (2014, 06, 01)) customers
printfn "Potential Customers (%d)\n%A" potential.Length potential
printfn "Denied Customers (%d)\n%A" denied.Length denied
0
Questo stampa:
Potential Customers (3)
[|{Name = "Bill Gates";
Born = 1955-10-28 00:00:00;
Sex = Male;}; {Name = "Melina Gates";
Born = 1964-08-15 00:00:00;
Sex = Female;}; {Name = "Sophie Turner";
Born = 1996-02-21 00:00:00;
Sex = Female;}|]
Denied Customers (3)
[|("Not allowed for senior citizens", {Name = "Clint Eastwood Jr.";
Born = 1930-05-31 00:00:00;
Sex = Male;});
("Not allowed for young males", {Name = "Justin Drew Bieber";
Born = 1994-03-01 00:00:00;
Sex = Male;});
("Not allowed for children", {Name = "Isaac Hempstead Wright";
Born = 1999-04-09 00:00:00;
Sex = Male;})|]