TypeScript 基础类型

TypeScript 复制代码
//基础类型 string,number,boolean
const teacherName:string = 'chen lee';
const teacherAge:number = 28.0;
const isMale:boolean = true;
//数组
const numberArr:number[]=[1,2,3,4,5];
const stringArr:string[]=['1','2','3','4','5'];
const booleanArr:Array<boolean>=[true,false,true];
//对象类型
const user: {name:string,age:number} = {name:'dell',age:18};
const userOne: {name:string,age?:number} = {name:'dell'};

function union(id:string|number)
{
    if(typeof id ==='string')
    {
        console.log(id.toUpperCase());
    }
    else
    {
        console.log(id);
    }
}
union('asd');
type User = {name: string,age:number};
//type Employee = {name: string,age:number,salary:number};
const userTwo:User = {name:'dell',age:18};
const userThree:User = {name:'dell',age:18};
//any
function showMessage(message:any)
{
    console.log(message);
}
//函数类型
function abc(message:string):number
{
    return 1;
}
const def: (age:number)=>number = (age:number)=>{return 1;}
//接口类型Interface
interface Student
{
    age:number;
    sex?:string;
}
//继承
// interface OldStudent extends Student
// {
//     name: string;
// }
//const student:Student = {age:18,sex:'male'};
//const oldstudent:OldStudent = {age:18,sex:'male',name:'dell'};
interface Student
{
    name: string;
}
const student:Student = {age:18,sex:'male',name:'dell'};

//交叉类型
type Employee = User & {salary:number};
const employee:Employee = {name: 'string',age:13,salary:18};
//断言 Assersion
//const dom: HTMLElement = document.getElementById('#root');
//const dom1: undefined = document.getElementById('#root') as undefined;
//const dom2: undefined = <undefined>document.getElementById('#root');
const testString: string = 123 as any as string;

//字面量类型
const str:'ast'= 'ast';
function getPosition(position:'left'|'right'):string
{
    return position;
}

const truthy: true = true;
//
function request(url: string,method:'GET'|'POST'):string
{
    return 'sending request';
}
const params:{url:string,method:string}={url:'imooc',method:'POST'}
request(params.url,params.method as 'GET');
//null , undefined
//严格校验会报红
//const testObject:null = undefined;
//const testUndefined:undefined = null;
const testObject:undefined = undefined;
const testUndefined:null = null;
function checkNull(abc:string | null)
{
    if(typeof abc === 'string' )
    {
        console.log(abc.toUpperCase());
    }
    //console.log(abc!.toUpperCase());表示一定非null
}
//void类型
function getNumber():void//无返回值
{

}

tsconfig.json

bash 复制代码
{
    "compilerOptions":{
        "noImplicitAny":true,
        "strictNullChecks": true
    }
}

"noImplicitAny":true,//对类型转换做检查

"noImplicitAny": true 配置在 TypeScript 项目中,意味着‌禁止隐式使用 any 类型 ‌。当 TypeScript 编译器无法推断出某个变量、参数或属性的类型时,会‌报编译错误 ‌,而不是默认将其视为 any

核心作用

  • 强制显式类型声明‌:所有未标注类型的标识符必须明确指定类型,否则编译失败。
  • 提升代码安全性‌:避免因类型推断失败导致的潜在运行时错误。
  • 增强可维护性‌:代码意图更清晰,便于团队协作和长期维护。

"strictNullChecks": true//对null和undefined做检查

核心作用

  • 禁止隐式空值赋值 ‌:在严格模式下,nullundefined不能 ‌赋值给其他类型(如 stringnumber 等),除非显式声明为联合类型(如 string | null)‌‌。
  • 强制空值检查 ‌:访问变量属性前必须先判断其是否为 nullundefined,避免运行时错误‌‌。
  • 类型推断更精确 ‌:变量赋值为 null 会被推断为 null 类型,赋值为 undefined 会被推断为 undefined 类型,而非 any‌‌。
相关推荐
huipeng9264 小时前
企业级微服务开发实战(一):项目启动与工程化设计
java·开发语言·spring boot·spring cloud·微服务·云原生·架构
爱吃土豆的马铃薯ㅤㅤㅤㅤㅤㅤㅤㅤㅤ4 小时前
java实现excel导入、下载模板方法
java·开发语言·excel
眠りたいです5 小时前
现代C++:C++14中的新语言特性和库特性
c语言·开发语言·c++
叶小鸡6 小时前
Java 篇-项目实战-AI 天机学堂(从 0 到 1)-day1
java·开发语言
楼田莉子7 小时前
C++17新特性:__had_include/属性/求值顺序规则
开发语言·c++·后端
香蕉鼠片8 小时前
Python进阶学习
开发语言·python
摇滚侠8 小时前
Java 零基础全套教程,File 类与 IO 流,笔记 177-178
java·开发语言·笔记
ytttr8738 小时前
OPC UA 协议栈 C 语言实现
c语言·开发语言·mfc
song5018 小时前
Ascend C 算子开发:从入门到上手
c语言·开发语言·图像处理·人工智能·分布式·flutter·交互