TS中类的继承和类的重写

// 定义一个类
class Lady {
    content='hi,body'
    sayHi(){ //定义一个方法,返回这个类中的content
        return this.content
    }
    sayHi1(){ //定义一个方法,返回这个类中的content
        return this.content
    }
}
const a = new Lady() //实例化这个类
console.log(a.sayHi()); //打印我们创建的这个类中的sayhi方法
// 定义一个类,继承Lady,此时现在新类beautifulLady,就是Lady的子类
class beautifulLady extends Lady{
    sayHi(){ //类的重写。这个新类的sayHi方法和Lady类中的sayHi方法一样,目的是更改父类的这个方法的返回值
        return '你好!'
    }
    sayHi1(){ //类的继承。 super.sayHi1()表示继承父类的sayHi1方法
        return super.sayHi1() +'。 你好!'
    }
    sayLove(){
        return this.content+'l love you'
    }
}
const b = new beautifulLady() 
console.log(b.sayHi1()); //打印我们创建的这个类中的sayhi方法
console.log(b.sayLove()); //打印我们创建的这个类中的sayhi方法

TS中类的继承和类的重写_第1张图片

 

你可能感兴趣的:(tpyescript,typescript)