继承
把几个类的共同的成员,组成一个类,称为父类。子类继承属性和方法,没有继承私有字段
public class student :person(父类)
继承单根性(一个类只有一个父类)
传递性()
子类没有继承父类的构造函数,但是在创建对象的过程中,先调用父类的构造函数,后执行子类构造函数。
子类的构造函数:base(。。) 如 public student (string name int age int score):base(name age)(在子类中)
在父类中 public person(string name int age)
new 隐藏从父类那里继承过来的成员(当父类与子类的成员一样时)