1.首先就知道接口的是作什麼?
interface 就是對參數 函數 數組 類 的限制
2.除了類的限制的寫法
如 interface test{數組
name:string
}
funcrtion t(agr:test){
}
表明 參數要按照test 的規格來 不過沒有 就會報錯函數
如 interface test{code
name:string; go(str:string):void
}接口
class newTest implements test{string
裏面就必需要有 test 設定的參數和方法
}io