C#语法的问题 get set的用法
C#语法的问题 get set的用法public class Users { private int _userid; private string _username; private string _userpwd; public int UserId { get { return this._userid; } set { this._userid = value; } } public string UserName { get { return this._username; } set { this._username = value; } } get 和set的用法.不要复制给我帮助中公式般回答 通俗的讲一下具体用法顺便麻烦讲解一下 上面 get和set的语句
最佳回答
这是C#中的属性
public string UserName
{
get { return this。_username; }
set { this。_username = value; }
}
通俗来讲。。get是获取值 set是设置值
比如这句:get { return this。_username; }
如果调用这个get方法 就能获得方法return的 this。_username(返回的值)
调用方法:Console。Write(对象。UserName);(输出该属性的值)
比如这句:set { this。_username = value; }
如果调用这个set方法 就可以重新设置username的值 value就是你新设置的值
调用方法:对象。UserName="新值";(为该属性附新值)
public string UserName
{
get { return this。_username; }
set { this。_username = value; }
}
通俗来讲。。get是获取值 set是设置值
比如这句:get { return this。_username; }
如果调用这个get方法 就能获得方法return的 this。_username(返回的值)
调用方法:Console。Write(对象。UserName);(输出该属性的值)
比如这句:set { this。_username = value; }
如果调用这个set方法 就可以重新设置username的值 value就是你新设置的值
调用方法:对象。UserName="新值";(为该属性附新值)
最新回答共有2条回答
-
2026-03-31 21:25:39可靠的花卷
回复这是C#中的属性 public string UserName { get { return this。_username; } set { this。_username = value; } } 通俗来讲。。get是获取值 set是设置值比如这句:get { return this。_username; } 如果调用这个get方法 就能获得方法return的 this。_username(返回的值)调用方法:Console。Write(对象。UserName);(输出该属性的值)比如这句:set { this。_username = value; } 如果调用这个set方法 就可以重新设置username的值 value就是你新设置的值调用方法:对象。UserName="新值";(为该属性附新值)
热门文章
- 康达学院专转本五年制
- 高考一个考场分ab卷吗
- not only but also用法
- 某物体做自由落体运动,从释放开始计时,则物体在前2s内的平均速度为______m/s,物体下落2m时的速度大小为______m/s.
- 三角函数公式大全表格
- 地理中考必背知识点2022
- 2013-2014学年小学六年级科学上学期期末考试试卷及答案
- 人教版2014-2015学年小学五年级英语第二学期期中教学质量检测试卷及答案
- 【Linux驱动开发】设备树详解(二)设备树语法详解
- 别跟客户扯细节
- 在别的城市买房子能落户吗
- 卖房前要把装修贷还完吗
- 高中政治教学提高教学效果的方法探究
- “互联网+”背景下的初中英语课堂教学改革与创新策略研究
- 2022年终止合同范本
- 租房合同范本范文
- 如何挑选土豆
- 如何挑选土鸡
