1

类型断言 Type Assertion

1. 定义

可以用来手动指定yi一个值的类型

2. 语法

  • <类型> 值
function getLength(x:number|string):number{
    if((<string>x).length) {
        return (<string>x).length
    } else {
        return x.toString().length
    }
}    
  • 值 as 类型
function getLength(x:number|string):number{
    if((x as string).length){
        return (x as string).length
    } else {
        return x.toString().length
    }
}

类型断言并非是类型转换,断言一个联合类型中不存在的类型会报错!

function wrong(x:number|string):boolean{
    return <boolean>x    //  报错!
}

桃小妖
278 声望16 粉丝