2011-01-21 08:17
横刀天笑
阅读(1040)
评论()
编辑
收藏
举报
F# part one:function,list,option,seq,pattern match,rec function etc.
1: let x = 5
2:
3: val x : int = 5
4:
5: open System.Net
6: open System.IO
7:
8: //method
9: let http (url:string) =
10: let req = WebRequest.Create(url)
11: let resp = req.GetResponse()
12: let stream = resp.GetResponseStream()
13: let reader = new StreamReader(stream)
14: reader.ReadToEnd()
15:
16: //method type
17: val http : string -> string
18:
19: let html = http "http://www.google.com"
20:
21: val html : string = "<html document>"
22:
23: // |> operator
24: let html1 = "http://www.google.com" |> http
25:
26: //string list
27: let sites = ["http://www.google.com";"http://www.baidu.com";"http://www.bing.com"]
28:
29: val sites : string list = ["http://www.google.com";"http://www.baidu.com";"http://www.bing.com"]
30:
31: //map method
32: let contents = sites |> List.map http
33:
34: //list
35: ["";"";""]
36: //array
37: [|"";"";""|]
38: //option
39: Some(4,5,6)
40: None
41: //seq
42: seq{1..100}
43: val it : seq<int> = seq[1;2;3;4;..]
44: seq{1..5..100}
45: seq{for i in 1 to 100 -> i*i}
46: //tuple
47: ("keyword1",5)
48:
49: //rec function
50: let rec length l =
51: match l with
52: | [] -> 0
53: | h :: t -> 1 + length t
54:
55: //pattern match
56: match aList with
57: |[] -> 0
58: |h :: t -> 1 + length t
59:
60: match aOption with
61: | Some(a,b) -> printfn "%s %s" a b
62: | None -> printfn "nothing"
63:
64: //function value
65: List.map (fun x -> x*x - 5) [5;6;7;8]
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器