TypeScript datatype

  • https://www.bilibili.com/video/av38379328?p=2
  • https://www.tslang.cn/docs/home.html

JavaScript中数据类型分为两种分别是原始数据类型(Primitive data types)和对象类型(Object types)。

  • 原始数据类型:布尔值、数值、字符串、nullundefined、ES6新增的Symbol
  • 对象类型

类型校验

TypeScript中为了使编写的代码更加规范,更加有利于维护,增加了类型校验。所谓的类型校验,就是创建变量时必须指定数据类型。

布尔类型boolean

  • TypeScript中使用boolean定义布尔值类型
  • 最基本的数据类型,取值范围是truefalse值。
var flag:boolean = true;
flag = 0;//app.ts(2,1): error TS2322: Type '0' is not assignable to type 'boolean'.

在TypeScript中boolean是JavaScript中的基本类型,而Boolean则是JavaScript中的构造函数。

  • 使用构造函数Boolean创建的对象不是布尔值,而是一个Boolean对象
let obj:Boolean = new Boolean(1);
console.log(obj);//Boolean {true}
  • 直接调用Boolean类返回的是一个boolean类型
let flag:boolean = Boolean(1);
console.log(flag);//true

数值类型number

  • TypeScript中使用number关键字定义数值类型
//数字 number
//TS中所有数字都是浮点数

//TS支持十进制的数字字面量
let decLiteral:number = 1;
console.log(decLiteral);//1

//TS支持十六进制的数字字面量
let hexLiteral:number = 0xf00d;
console.log(hexLiteral);//61453

//TS支持ES2015中的二进制的数字字面量
let binLiteral:number = 0b1010;
console.log(binLiteral);//10

//TS支持ES2015中八进制的数字字面量
let octLiterral:number = 0o744;
console.log(octLiterral);//484

字符串类型string

//字符串 string

//使用字符串表示文本数据类型,使用单引号和双引号表示字符串。
let nick:string = "alice";
nick = "smith";
console.log(nick);//smith

//使用模板字符串定义多行文本和内嵌表达式,模板字符串是以反引号包围并以${expr}形式嵌入表达式。
let age:number = 18;
let message:string = `hello, my nick name is ${nick} and my age is ${age + 1}`
console.log(message);//hello, my nick name is smith and my age is 19

数组类型array

定义数组

  • 普通数组:[]
//普通数组
let arrList:number[] = [1,2,3,4,5,6,7];
console.log(arrList);// [ 1, 2, 3, 4, 5, 6, 7 ]
  • 泛型数组:Array<元素类型>
//数组泛型
let arrNumber:Array = [1,2,3,4,5];
console.log(arrNumber);// [ 1, 2, 3, 4, 5 ]
  • 可变数组:let arr:any = [1, "junchow"]

元组类型tuple

  • 元祖是一种特殊的数组
  • 元组表示一个已知元素数量和类型的数组,各元素类型不同。
let user:[number, string];
user = [1, "alice"];

console.log(
    user, 
    user[0], 
    user[1], 
    user[0].toString(), 
    user[1].substr(1)
);
//[ 1, 'alice' ] 1 'alice' '1' 'lice'

枚举类型enum

随着计算机不断普及,程序不仅只用于数值计算,还更广泛地应用于处理非数值的数据。例如:性别、月份、星期、颜色、单位名、学历、职业等,都不是数值数据。

在其它程序设计语言中,一般会用一个数值来表示某一状态,这种处理方法并不直观,易读性差。如果能在程序中使用自然语言中相应含义的单词来表示某一状态,程序就会更加容易阅读和理解。也就是说,事先考虑到某个变量可能取得值,然后尽量使用自然语言中含义清晰的单词来表示它的每个值,这种方法就叫做枚举,使用枚举定义的类型称之为枚举类型。

enum 枚举名{
  标识符[=整型常量],
  ...
  标识符[=整型常量]
};
  • enum枚举类型可以为一组数值赋予友好的名字
  • enum枚举类型默认从0开始为元素编号,可以手动指定成员的数值。
enum Result{
  Error=0, 
  Success=1
}

let result:Result = Result.Error;
console.log(result);//0

let retname:string = Result[1];
console.log(retname);//Success

任意类型any

  • 任意值any表示允许赋值为任意类型,变量声明时若未指定类型则会被识别为任意值类型。
let unknown:any = "one";
unknown = undefined;
console.log(unknown);//undefined
  • 任意值any可用于定义不定类型的数组
let anyArr:any = [1, "junchow", false];
console.log(anyArr[1]);//junchow
console.log(anyArr instanceof Array);//true
  • 可以将任意类型的变量赋值给任意类型的变量,没有指定类型的变量默认为any
let tmp;
tmp = 0;
tmp = "zero";
console.log(tmp);//zero
  • 普通类型在赋值过程中改变类型是不被允许的,但any类型则允许被赋值为任意类型。
var box:any = document.getElementById("box");
box.style.color = "#ff0000";
  • 任意值any允许访问任何属性,也允许调用任何方法。
  • 声明变量为任意值后对其任何操作返回的内容都是任意值

空类型null

let tmp:null;
console.log(tmp);//null

let temp:number | null | undefined;
temp = 1;
temp = null;
console.log(temp);//null

未定义类型undefined

  • 变量定义未赋值则默认为undeifned
let tmp:number;
console.log(tmp);//undefined

let temp:undefined;
console.log(temp);//undefined

let val:number | undefined;
val = 1;
console.log(val);//1

无类型void

  • void无类型用于函数无返回值
function run():void{
    console.log("run");
}
run();
//app.ts(1,16): error TS2355: A function whose declared type is neither 'void' nor 'any' must return a value.
function run():number{
    console.log("run");
}
run();

其它类型never

  • nullundeifnednever其它类型的子类型\
var tmp:undefined;
tmp = undefined;
tmp = null;
console.log(tmp);//null
  • never类型代表从不会出现的值,意味着声明never的变量只能被never类型赋值。
let ex:never;

ex = (()=>{
    throw new Error("throw exception");
})();

console.log(ex);//Uncaught Error: throw exception

你可能感兴趣的:(TypeScript datatype)