ts类接口约束定义

(()=>{

 //类接口约束定义
 interface IPerson{
    //定义一个方法
    eat()
 }

 interface ISuper{
    //定义一个方法
    fly()
 }

 //定义实现接口的类,可以实现多个接口,用逗号区分
 class Person implements IPerson,ISuper{
    eat() {
        console.log('777777')
    }
    fly() {
        console.log('我是超人,我会飞')
    }
 }

 //初始化类
const p=new Person()

p.eat()
p.fly()

})()

  

posted @ 2024-07-25 05:38  关键步就几步  阅读(1)  评论(0编辑  收藏  举报