【TS高频面试题】interface与type的区别

2024-09-06 12:44

本文主要是介绍【TS高频面试题】interface与type的区别,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

参考文章

一、基本概念

1. type(类型别名)

用来给一个类型起新名字,使用 type 创建类型别名。

2. interface(接口)

专门用于定义对象的结构(比如属性和方法)

二、相同点

(1)都可以描述对象或函数

interface

interface User {name: stringage: number
}interface SetUser {(name: string, age: number): void;
}

type

type User = {name: stringage: number
};type SetUser = (name: string, age: number)=> void;

(2)都允许继承

在 TypeScript 中,interface 和 type 可以相互继承。
在 TypeScript 中,interfacetype 可以相互继承,具体如下:

1. interface 可以继承 interface

这是最常见的用法。一个 interface 可以通过 extends 继承另一个 interface

interface Person {name: string;
}interface Employee extends Person {employeeId: number;
}const emp: Employee = {name: "Alice",employeeId: 123
};

2. interface 可以继承 type

interface 也可以通过 extends 继承一个 type,因为 type 也可以定义对象结构。

type Person = {name: string;
};interface Employee extends Person {employeeId: number;
}const emp: Employee = {name: "Bob",employeeId: 456
};

3. type 可以继承 interface

type 可以通过交叉类型(&)继承 interface。交叉类型会将多个类型合并为一个新类型。

interface Person {name: string;
}type Employee = Person & {employeeId: number;
};const emp: Employee = {name: "Charlie",employeeId: 789
};

4. type 可以继承 type

type 可以通过交叉类型继承另一个 type

type Person = {name: string;
};type Employee = Person & {employeeId: number;
};const emp: Employee = {name: "David",employeeId: 101
};
  • interface 可以继承 interfacetype,通过 extends 实现。
  • type 可以继承 interfacetype,通过交叉类型 & 实现。

三、区别

(1) 可声明的类型

type:不仅可以用来表示对象类型,还可以用来表示基本类型联合类型元组和交叉类型

type userName = string;   // 基本类型
type userMsg = string | number;   // 联合类型// 对象类型
type Person = {name: userName;age: number;
};// 使用Person类型
let user: Person = {name: "leo",age: 18
};//  交叉类型 例子:
// 交叉类型将多个类型组合成一个类型,这个类型必须满足所有被组合的类型。对于复杂对象或组合类型的场景非常有用。
type Person = {name: string;age: number;
};type Employee = {employeeId: number;position: string;
};type Developer = Person & Employee; // 交叉类型const dev: Developer = {name: "Alice",age: 28,employeeId: 123,position: "Frontend Developer"
};

interface:仅限于描述对象类型和函数

interface User {name: string;age: number;sayHello: () => void;
}const user1: User = {name: "Alice",age: 25,sayHello: () => console.log("Hello!")
};

(2)interface支持声明合并,type不支持会报错

或者总结成:

  • type 可以做到而 interface 不能做到:可以用来表示基本类型联合类型元组和交叉类型
  • interface 可以做到而 type 不能做到:interface 可以声明合并。如果使用type,就会报 重复定义 的警告
interface test {name: string
}
interface test {age: number
}/*test实际为 {name: stringage: number}
*/

(3)扩展(继承)的的实现方法

interface是通过extends实现的,type是通过&(交叉类型)实现的。

这篇关于【TS高频面试题】interface与type的区别的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1142042

相关文章

Python中@classmethod和@staticmethod的区别

《Python中@classmethod和@staticmethod的区别》本文主要介绍了Python中@classmethod和@staticmethod的区别,文中通过示例代码介绍的非常详细,对大... 目录1.@classmethod2.@staticmethod3.例子1.@classmethod

Golan中 new() 、 make() 和简短声明符的区别和使用

《Golan中new()、make()和简短声明符的区别和使用》Go语言中的new()、make()和简短声明符的区别和使用,new()用于分配内存并返回指针,make()用于初始化切片、映射... 详细介绍golang的new() 、 make() 和简短声明符的区别和使用。文章目录 `new()`

Python中json文件和jsonl文件的区别小结

《Python中json文件和jsonl文件的区别小结》本文主要介绍了JSON和JSONL两种文件格式的区别,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下... 众所周知,jsON 文件是使用php JSON(JavaScripythonpt Object No

结构体和联合体的区别及说明

《结构体和联合体的区别及说明》文章主要介绍了C语言中的结构体和联合体,结构体是一种自定义的复合数据类型,可以包含多个成员,每个成员可以是不同的数据类型,联合体是一种特殊的数据结构,可以在内存中共享同一... 目录结构体和联合体的区别1. 结构体(Struct)2. 联合体(Union)3. 联合体与结构体的

什么是 Ubuntu LTS?Ubuntu LTS和普通版本区别对比

《什么是UbuntuLTS?UbuntuLTS和普通版本区别对比》UbuntuLTS是Ubuntu操作系统的一个特殊版本,旨在提供更长时间的支持和稳定性,与常规的Ubuntu版本相比,LTS版... 如果你正打算安装 Ubuntu 系统,可能会被「LTS 版本」和「普通版本」给搞得一头雾水吧?尤其是对于刚入

python中json.dumps和json.dump区别

《python中json.dumps和json.dump区别》json.dumps将Python对象序列化为JSON字符串,json.dump直接将Python对象序列化写入文件,本文就来介绍一下两个... 目录1、json.dumps和json.dump的区别2、使用 json.dumps() 然后写入文

native和static native区别

本文基于Hello JNI  如有疑惑,请看之前几篇文章。 native 与 static native java中 public native String helloJni();public native static String helloJniStatic();1212 JNI中 JNIEXPORT jstring JNICALL Java_com_test_g

荣耀嵌入式面试题及参考答案

在项目中是否有使用过实时操作系统? 在我参与的项目中,有使用过实时操作系统。实时操作系统(RTOS)在对时间要求严格的应用场景中具有重要作用。我曾参与的一个工业自动化控制项目就采用了实时操作系统。在这个项目中,需要对多个传感器的数据进行实时采集和处理,并根据采集到的数据及时控制执行机构的动作。实时操作系统能够提供确定性的响应时间,确保关键任务在规定的时间内完成。 使用实时操作系统的

一些其他面试题

阿里二面:那你来说说定时任务?单机、分布式、调度框架下的定时任务实现是怎么完成的?懵了。。_哔哩哔哩_bilibili 1.定时算法 累加,第二层每一个格子是第一层的总时间400 ms= 20 * 20ms 2.MQ消息丢失 阿里二面:高并发场景下引进消息队列有什么问题?如何保证消息只被消费一次?真是捏了一把汗。。_哔哩哔哩_bilibili 发送消息失败

Android fill_parent、match_parent、wrap_content三者的作用及区别

这三个属性都是用来适应视图的水平或者垂直大小,以视图的内容或尺寸为基础的布局,比精确的指定视图的范围更加方便。 1、fill_parent 设置一个视图的布局为fill_parent将强制性的使视图扩展至它父元素的大小 2、match_parent 和fill_parent一样,从字面上的意思match_parent更贴切一些,于是从2.2开始,两个属性都可以使用,但2.3版本以后的建议使