1. class People { name: string;
    2. age: number;
    3. constructor(name: string, age: number) {
    4. this.name = name;
    5. this.age = age;
    6. }
    7. eat(food: string): void {
    8. console.log("eat", food);
    9. }
    10. }
    11. class Student extends People {
    12. school: string;
    13. constructor(name: string, age: number, school: string) {
    14. super(name, age);
    15. this.school = school;
    16. }
    17. }
    18. let stu = new Student("lisi", 19, "qinghua");
    19. stu.eat("apple");