在这些初始化语句编译的前提下
List<int> l = new List<int> { 1, 2, 3 };
Dictionary<int, int> d = new Dictionary<int, int> { [1] = 11, [2] = 22 };
Foo f = new Foo { Bar = new List<int>() };
这不会
List<int> l = { 1, 2, 3 };
Dictionary<int, int> d = { [1] = 11, [2] = 22 };
Foo f = { Bar = new List<int>() };
我对嵌套初始化有疑问。鉴于以下课程
public class Foo {
public List<int> Bar { get; set; } = new List<int>();
public Dictionary<int, Foo> Baz { get; set; } = new Dictionary<int, Foo>();
}
我偶然发现你实际上可以这样做:
Foo f = new Foo {
Bar = { 1, 2, 3 },
Baz = {
[1] = {
Bar = { 4, 5, 6 }
}
}
};
虽然它确实编译它会引发KeyNotFoundException
。所以我将属性更改为
public List<int> Bar { get; set; } = new List<int> { 4, 5, 6 };
public Dictionary<int, Foo> Baz { get; set; }
= new Dictionary<int, Foo> { [1] = new Foo { Bar = new List<int>() { 1, 2, 3 } } };
假设这是替换现有成员的一些不寻常的表示法。现在初始化会抛出StackOverflowException
。
所以我的问题是,为什么表达式甚至可以编译?该怎么办?我觉得我必须遗漏一些非常明显的东西。
答案 0 :(得分:7)
所以我的问题是,为什么表达式甚至可以编译?
它是具有集合初始值设定值的对象初始值设定项。从C#规范部分7.6.10.2:
在等号后面指定集合初始值设定项的成员初始值设定项是嵌入式集合的初始化。而不是将新集合分配给字段或属性,初始化程序中给出的元素将添加到字段或属性引用的集合中。
所以你的代码大致相当于:
Foo tmp = new Foo();
tmp.Bar.Add(1);
tmp.Bar.Add(2);
tmp.Bar.Add(3);
tmp.Baz[1].Bar.Add(4); // This will throw KeyNotFoundException if Baz is empty
tmp.Baz[1].Bar.Add(5);
tmp.Baz[1].Bar.Add(6);
Foo f = tmp;
您的初始化版本将抛出StackOverflowException
,因为Foo
的初始化程序需要创建Foo
的新实例,该实例需要创建Foo
等新实例