码迷,mamicode.com
首页 > 其他好文 > 详细

TYpeScript接口的使用

时间:2017-08-12 11:48:33      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:类型   const   type   cto   style   config   string   方法   pes   

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接口的使用

标签:类型   const   type   cto   style   config   string   方法   pes   

原文地址:http://www.cnblogs.com/fuck1/p/7349291.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!