码迷,mamicode.com
首页 > Windows程序 > 详细

C#基础[8] 属性

时间:2017-09-13 22:05:23      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:read   ons   new   protect   threading   pac   get   bsp   system   

protected

受保护的:可以在当前类的内部以及该类的子类中访问。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace protected访问修饰符
{
    class Program
    {
        static void Main(string[] args)
        {
            //public private
            Person p = new Person();
            
        }
    }

    public class Person
    {
        protected string _name;

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


    public class Student : Person
    {
        public void Test()
        { 
            
        }
    }
}

 

C#基础[8] 属性

标签:read   ons   new   protect   threading   pac   get   bsp   system   

原文地址:http://www.cnblogs.com/lolitagis/p/7517828.html

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