gpt4 book ai didi

c# - 为什么 C# 允许将匿名对象分配给属于类类型的类字段?

转载 作者:行者123 更新时间:2023-11-30 13:30:05 24 4
gpt4 key购买 nike

例子:

class Foo
{
public Bar Bar { get; set; }
}

class Bar
{
public string Name { get; set; }
}

...
{
var foo = new Foo
{
Bar = { Name = "abc" } // run-time error
};
}

为什么 C# 允许这种赋值? IMO,这没有任何意义,但更容易导致错误。

最佳答案

这是可能的,因为如果对象已经被实例化,它不会导致运行时错误。

class Foo
{
public Bar Bar { get; set; } = new Bar();
}

{
var foo = new Foo
{
Bar = { Name = "abc" } // no error
};
}

关于c# - 为什么 C# 允许将匿名对象分配给属于类类型的类字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41618489/

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