我不建议在C#中用下划线_开头来表示私有字段
2021-03-18 02:23
标签:javascrip 语言 tom ase obj customer 官方 混淆 methods 我经常在一些C#官方文档的使用属性里看到这种代码: 这段代码里的 实际上我简单地使用驼峰命名法,不用下划线 这样看起来更简洁,更容易理解了。下面同样来自官方文档的自动实现的属性里的代码就很不错: 事实上,只使用驼峰命名法,不要暴露字段而是使用属性与get/set访问器,或者是单纯地起个更好的变量名,你总是可以找到办法来避免用下划线 我不建议在C#中用下划线_开头来表示私有字段 标签:javascrip 语言 tom ase obj customer 官方 混淆 methods 原文地址:https://www.cnblogs.com/stardust233/p/12375294.htmlpublic class Date
{
private int _month = 7; // Backing store
public int Month
{
get => _month;
set
{
if ((value > 0) && (value
_month
是以下划线开头的,用来表示private。这样做会有什么问题呢?
_
重复表示private_
已经用来表示弃元的功能了,是不是造成混淆呢?_
开头,也不会有什么问题。代码如下:public class Date
{
private int month = 7; // Backing store
public int Month
{
get => month;
set
{
if ((value > 0) && (value
// This class is mutable. Its data can be modified from
// outside the class.
class Customer
{
// Auto-implemented properties for trivial get and set
public double TotalPurchases { get; set; }
public string Name { get; set; }
public int CustomerID { get; set; }
// Constructor
public Customer(double purchases, string name, int ID)
{
TotalPurchases = purchases;
Name = name;
CustomerID = ID;
}
// Methods
public string GetContactInfo() { return "ContactInfo"; }
public string GetTransactionHistory() { return "History"; }
// .. Additional methods, events, etc.
}
class Program
{
static void Main()
{
// Intialize a new object.
Customer cust1 = new Customer(4987.63, "Northwind", 90108);
// Modify a property.
cust1.TotalPurchases += 499.99;
}
}
_
开头。
文章标题:我不建议在C#中用下划线_开头来表示私有字段
文章链接:http://soscw.com/index.php/essay/65570.html