1、private 当前类内部才能访问
//访问不到Class Student{//括号内 private int a; }
2、protected 当前类以及子类内部才能访问
//访问不到Class Student{//可访问Protected int b;}Class AnotherClass{//访问不到}Class GoodStudent:Student{//子类可以访问得到}
3、internal 当前程序集内部的才可以访问,只要会编译成同一个程序集的就能访问
4、protected internal 2+3 。当前程序集内部,或当前类,或当前类的子类中可访问
5、public 到处都可以访问