TypeScript语法中有哪些操作符?

2025年01月28日 建站教程

TypeScript语法所用的操作符分别是可选链操作符、非空断言操作符、明确类型断言、空合并操作符和明确类型转换?下面web建站小编给大家简单各种操作符的基本运用!

可选链操作符

interface Person {
  name: string;
  address?: {
    city: string;
  };
}

const person: Person = {
  name: "John",
};

const city = person.address?.city;

非空断言操作符

const element: HTMLElement | null = document.getElementById("my-element");
const width: number = element!.offsetWidth;

明确类型断言

const input: unknown = "27";
const value: number = <number>(<string>input).length;

空合并操作符

const value: number | null = null;
const defaultValue = 27;

const result = value ?? defaultValue;

明确类型转换

const value: string = "27";
const numberValue: number = Number(value);

本文链接:http://so.lmcjl.com/news/22186/

展开阅读全文
上一篇:mysql分组查询是什么 下一篇:Go vs Java
相关内容