码迷,mamicode.com
首页 > 其他好文 > 详细

使用属性存储用户编号和姓名

时间:2018-12-05 02:02:38      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:tar   string   highlight   png   pre   for   语句   private   load   

实现效果:

  技术分享图片

知识运用:

  get和set访问器

  [修饰符]  [类型 ]   [属性名]{

  get {get访问器体};

  set {set访问器体};

  }

实现代码:

        private void Form1_Load(object sender, EventArgs e)
        {
            student stu = new student();
            stu.ID = "S911"; stu.NAME = "莫恐";
            label1.Text += "\n\n" + stu.ID + "\n\n" + stu.NAME;
            stu.ID = "S119"; stu.NAME = "莫慌";
            label2.Text += "\n\n" + stu.ID + "\n\n" + stu.NAME;
        }
        
    }
    class student {
        private string id = "", name = "";
        public string ID { set { id = value; } get { return id; } }
        public string NAME { set { name = value; } get { return name; } }
    }

知识补充:

  属性名首字母通常大写

  在set访问器中不能自定义使用名称为value的局部变量或常量

  在set访问器体中允许包含大量语句,因此可以对赋值进行检查,避免进一步的错误

使用属性存储用户编号和姓名

标签:tar   string   highlight   png   pre   for   语句   private   load   

原文地址:https://www.cnblogs.com/feiyucha/p/10068463.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!