-
命名空间中的类的访问修饰符是什么?
static void Main(string[] args) { //能调用student,证明student不是private。实际上,命名空间类的类默认是internal Student s = new Student(); s.Run();//能继承父类中的方法,说明student也不是private //run执行的是Person中的方法,说明没有重写. //new只是隐藏了父类中的方法, Person p = new Student(); p.Run(); Console.ReadKey(); } class Person { public void Run() { Console.WriteLine("Person can run"); } } class Student:Person { public new void Run() { Console.WriteLine("Student can run"); } }