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

Ts中的接口interface

时间:2016-11-16 02:28:19      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:string   ret   没有   return   方法   ring   imp   log   as3   

接口ITest.ts

interface ITest {
    name:string;
    age:number;
    run();
    goto(x:number,y:number):number;
}

必须继承接口的属性和方法(AS3接口中不能定义属性)。

属性和方法必须是public。

类型没有强制和接口一致。

class Test implements ITest{
    public name:string = "Test";
    public age;
    
    public run(){
        console.log(this.name);  //Test
    }
    
    public goto(x,y){
        return x+y;
    }
}

 

Ts中的接口interface

标签:string   ret   没有   return   方法   ring   imp   log   as3   

原文地址:http://www.cnblogs.com/gamedaybyday/p/6067888.html

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