接口类概述
接口是一种协议或者是规范。例如两个开发者,开发时间完全不一致,那么需要两个人的配合开发,则需要一个人先将接口写好,定义好其中所有的变量命名规范、函数定义规范。具体实现类的开发人员则只需要按照接口实现相应功能即可。
TypeScript 实现接口类
1 使用 interface 关键字声明接口类;
2 使用关键字 implements 实现接口;
示例
代码语言:javascript复制interface Animal{
eat():void;
}
class Dog implements Animal{
name:string;
constructor(name:string){
this.name = name;
}
eat():void{
console.log(this.name 'eat...');
}
}
var dog = new Dog("小黄")
dog.eat();