typescript-implements-的意思

63次阅读

共计 234 个字符,预计需要花费 1 分钟才能阅读完成。

1. 首先就知道接口的是做什么?
interface 就是对参数 函数 数组 类 的限制
2. 除了类的限制的写法
如 interface test{

name:string

}
funcrtion t(agr:test){
}
代表 参数要按照 test 的规格来 不过没有 就会报错

  1. 限制类的写法 就会用到 implements

如 interface test{

name:string;
go(str:string):void

}

class newTest implements test{

 里面就必须要有 test 设定的参数和方法 

}

正文完
 0