标签:私有字段 面向对象 read ret 11.2 date 私有 安全性 静态
字段:
属性:
1.使用属性的必要性:
private DateTime birthday;
public DateTime Birthday
{
get { return birthday; }
set { birthday = value; }
}
2.自动属性:
public string StudentName{get ;set }
标签:私有字段 面向对象 read ret 11.2 date 私有 安全性 静态
原文地址:https://www.cnblogs.com/123mutouren/p/9896595.html