码迷,mamicode.com
首页 > 其他好文 > 详细

TypeScript 类型注解和类型推断

时间:2020-12-29 11:26:26      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:lang   rip   无法   变量类型   类型   使用   number   not   自动   

type annotation 类型注解

let count: number;
count = 1;

type inference 类型推断

const one = 1;
const two = 2;
const three = one + two;

const person = {
  name: "张三",
  age: 45,
};

使用:

  • 如果 TS 能够自动分析变量类型, 我们就什么也不需要做了
  • 如果 TS 无法分析变量类型的话, 我们就需要使用类型注解

TypeScript 类型注解和类型推断

标签:lang   rip   无法   变量类型   类型   使用   number   not   自动   

原文地址:https://www.cnblogs.com/xch-jiang/p/14179164.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!