编程语言
首页 > 编程语言> > c# – Readonly getters VS属性函数

c# – Readonly getters VS属性函数

作者:互联网

C#6带来了一些新功能,包括getter-only auto-propertiesproperty-like function members.

我想知道这两个属性之间有什么区别?我有什么理由喜欢彼此吗?

public class Foo
{
    public string Bar {get;} = "Bar";
    public string Bar2 => "Bar2";
}

我知道{get;} =只能通过静态调用或常量值设置,并且=>>可以使用实例成员.但在我的特殊情况下,我应该选择哪一个?为什么?

解决方法:

用C#1来展示它们是最简单的:

public class Foo
{
    private readonly string bar = "Bar";
    public string Bar { get { return bar; } }

    public string Bar2 { get { return "Bar2"; } }
}

如你所见,第一个涉及一个领域,第二个没有.因此,您通常会使用第一个对象,其中每个对象可能具有不同的状态,例如在构造函数中设置,但第二个具有在此类型的所有对象中保持不变的东西,因此不需要任何每对象状态(或者当然,您只是委托给其他成员).

基本上,如果您没有可用的C#6,请问自己上面的哪些代码,并选择相应的C#6路径.

标签:c,c-6-0
来源: https://codeday.me/bug/20190516/1116476.html