首页 > 代码库 > TYpeScript接口的使用
TYpeScript接口的使用
1、接口中的属性值的使用:
1 // 作用是强制类型检查 2 interface Iperson { 3 name: string; 4 age: string; 5 } 6 7 class Person { 8 constructor(public config:Iperson) { 9 10 } 11 } 12 13 let p1: Person = new Person({ 14 name: ‘swe‘, 15 age:‘12‘ 16 });
2、接口中的方法的使用
没有多态。使用效果与Java十分类似。
1 interface Animal { 2 eat(); 3 } 4 5 class Dog implements Animal { 6 eat() { 7 console.log(‘吃骨头‘); 8 } 9 } 10 11 class Cat implements Animal { 12 eat() { 13 console.log(‘吃鱼‘); 14 } 15 } 16 let dog1 = new Dog(); 17 dog1.eat(); 18 let cat1 = new Cat(); 19 cat1.eat();
TYpeScript接口的使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。