摘要:
类与接口 类实现一个接口 interface Radio { switchRadio(trigger: boolean): void; } class Car implements Radio { switchRadio(trigger) { return 123 } } class Cellpho 阅读全文
摘要:
函数 Typescript 文档地址:Functions Function 函数 在 JS 中,函数是一等公民 // 来到我们的第一个例子,约定输入,约定输出 function add(x: number, y: number): number { return x + y } // 可选参数 fu 阅读全文