摘要:
自定义类型保护,文档中说:一旦检查过类型,就能在之后的每个分支里清楚地知道 pet的类型的话就好了,但并未说哪种分支有效 亲测:if else 、while有效,switch无效 interface Bird { fly(); layEggs(); } interface Fish { swim() 阅读全文
摘要:
never 永不存在的值得类型,不好理解,以实例为例: 函数返回never的函数必须存在无法到达的终点,更不好理解,这里并不是指没有返回值 而是指会抛出、返回错误或者无限循环 // 返回never的函数必须存在无法达到的终点 function error(message: string): neve 阅读全文
摘要:
这里可借助字符串索引 可用于interface与type interface Dic<T> { [index:string]: T } let d1:Dic<string>= {'a': 'aaa', 'b': 'bbb'} interface NumDic<T> { [index:number]: 阅读全文