public People(string name,int age) //父类 { } public Students(string name, int age, uint id) : base(name,age) //子类 { //构造方法 }