作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
什么是collection initializer F#中的语法?在 C# 中,您可以编写如下内容:
new Dictionary<string, int>() {
{"One", 1},
{"two", 2}}
最佳答案
正如 Jared 所说,对于任意集合没有内置支持。然而,C# 代码只是 Add
的语法糖。方法调用,因此您可以将其转换为:
let coll = MyCollectionType()
["One", 1; "Two", 2] |> Seq.iter coll.Add
inline
进一步简化这一定义:
let inline initCollection s =
let coll = new ^t()
Seq.iter (fun (k,v) -> (^t : (member Add : 'a * 'b -> unit) coll, k, v)) s
coll
let d:System.Collections.Generic.Dictionary<_,_> = initCollection ["One",1; "Two",2]
关于F# 集合初始值设定项语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5341030/
我想成为 Spark 纱客户(link)。是否需要安装hadoop?还是只安装 yarn 可以吗? (by this link) 最佳答案 No Spark不需要Hadoop即可运行。 Apache
我是一名优秀的程序员,十分优秀!