gpt4 book ai didi

c# - 对象初始化期间接口(interface)集合成员的奇怪行为

转载 作者:行者123 更新时间:2023-11-30 16:19:03 25 4
gpt4 key购买 nike

我在以下代码中遇到运行时 NullReferenceException 异常:

public class Container
{
public IList<string> Items { get; set; }
}

class Program
{
static void Main(string[] args)
{
var container = new Container() { Items = {"Test"} };
}
}

编译器无法创建接口(interface)实例是合乎逻辑的,但我遇到了运行时异常,而不是编译时异常。当我进一步调查这种行为时,我更加困惑了:

    var container = new Container() { Items = {} }; //Legal, Items is null after initialization

var container = new Container() { Items = { "Test" } }; //Legal, throws exception
container.Items = {}; //Illegal doesn't compile
container.Items = {"Test"}; //Illegal doesn't compile

这是某种错误还是我不明白什么?我正在使用 .net framework 4.0

最佳答案

它编译,因为编译器不知道List已经在其他地方初始化了。您可以通过将初始化添加到构造函数中来使其工作:

public class Container
{
public IList<string> Items { get; set; }

public Container()
{
Items = new List<string>();
}
}

或者更改属性以隐藏一个字段,该字段在创建类实例时初始化:

private IList<string> items = new List<string>();
public IList<string> Items
{
get { return items; }
set { items = value; }
}

然后,var container = new Container() { Items = { "Test" } };工作得很好。

运行时.Add()为集合初始值设定项组中的每个项目调用方法。当属性未使用 new List<string> 初始化时它有 null值(value),这就是为什么 NullReferenceException被抛出。

Object and Collection Initializers (C# Programming Guide)

By using a collection initializer you do not have to specify multiple calls to the Add method of the class in your source code; the compiler adds the calls.

关于c# - 对象初始化期间接口(interface)集合成员的奇怪行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15520209/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com