C# Protected访问修饰符

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

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6.   
  7. namespace _04protected访问修饰符  
  8. {  
  9.     class Program  
  10.     {  
  11.         static void Main(string[] args)  
  12.         {  
  13.             //public private  
  14.             Person p = new Person();  
  15.               
  16.         }  
  17.     }  
  18.   
  19.     public class Person  
  20.     {  
  21.         protected string _name;  
  22.   
  23.         public string Name  
  24.         {  
  25.             get { return _name; }  
  26.             set { _name = value; }  
  27.         }  
  28.     }  
  29.   
  30.   
  31.     public class Student : Person  
  32.     {  
  33.         public void Test()  
  34.         {   
  35.               
  36.         }  
  37.     }  
  38. }  
shashou47

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: