gpt4 book ai didi

c# - 在方法中访问属性时使用私有(private)或公共(public)属性成员?

转载 作者:太空狗 更新时间:2023-10-30 01:06:43 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Within the Containing Class, Use Property or Field?

看看下面的属性:

private string _name;
public string Name
{
get
{
return _name;
}
set
{
_name = value
}
}

假设我需要访问 name 属性,并且我在声明该属性的同一类中的一个方法中,我应该使用 this.Name 还是 this._name?使用公共(public)成员是更好的做法还是至少更清洁?

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