默认情况下,引用类型数组被初始化,所有引用都为空。
有什么语法技巧可以用新的默认对象初始化它们吗?
例如
public class Child
{
}
public class Parent
{
private Child[] _children = new Child[10];
public Parent()
{
//any way to negate the need for this?
for (int n = 0; n < _children.Length; n++)
_children[n] = new Child();
}
}
最佳答案
使用 LINQ:
private Child[] _children = Enumerable
.Range(1, 10)
.Select(i => new Child())
.ToArray();
关于c# - 初始化引用类型数组的简单方法?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12492422/