type 和 interface的区别
Posted 前端精髓
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了type 和 interface的区别相关的知识,希望对你有一定的参考价值。
类型别名(type)会给一个类型起个新名字。 类型别名有时和接口很像,但是可以作用于原始值,联合类型,元组以及其它任何你需要手写的类型。
1、都可以描述一个对象或者函数
【interface】
interface User
name: string,
age: number
interface SetUser
(name: string, age: number) : void
【type】
type User =
name: string,
age: number
type SetUser = (name: string, age: number) => void
2、扩展(extends)与交叉类型(intersection types)
interface 可以 extends,type 不允许 extends和implement的,type可以通过交叉类型实现 interface 的extends行为。
并且两者并不是相互独立的,也就是说 interface 可以 extends type , type也可以与 interface类型交叉。
两者效果差不多,但是两者语法不同。
interface extends interface
interface Name
name: string;
interface User extends Name
age: number;
type & type
type Name =
name: string
type User = Name & age: number
interface extends type
type Name =
name: string
interface User extends Name
age: number
type & interface
interface Name
name: string
type User = Name &
age: number
type 可以 interface 不行
type 可以声明基本类别名,联合类型,元组类型
type Name = string
interface Dog
wong();
interface Cat
miao();
type Pet = Dog | Cat;
let a: Pet =
wong() ,
;
通过 typeof 获取实例的类型进行赋值
let div = document.createElement('div')
type B = typeof div
其他骚操作
type StringOrNumber = string | number;
type Text = string | text: string ;
type NameLookup = Dictionary<string, Person>;
type Callback<T> = (data: T) => void;
type Pair<T> = [T, T];
type Coordinates = Pair<number>;
type Tree<T> = T | left: Tree<T>, right: Tree<T> ;
interface 可以 type不行
interface 能够声明合并
interface User
nage: string,
age: number,
interface User
sex: string
let user: User =
nage: '小明',
age: 10,
sex: '男'
推荐:能用 interface 就用 interface,实现不了再考虑用 type
总结
像我们提到的,类型别名可以像接口一样;然而,仍有一些细微差别。
其一,接口创建了一个新的名字,可以在其它任何地方使用。 类型别名并不创建新名字—比如,错误信息就不会使用别名。 在下面的示例代码里,在编译器中将鼠标悬停在 interfaced 上,显示它返回的是 Interface,但悬停在 aliased 上时,显示的却是对象字面量类型。
type Alias = num: number
interface Interface
num: number;
declare function aliased(arg: Alias): Alias;
declare function interfaced(arg: Interface): Interface;
另一个重要区别是类型别名不能被 extends和 implements(自己也不能 extends和 implements其它类型)。 因为软件中的对象应该对于扩展是开放的,但是对于修改是封闭的,你应该尽量去使用接口代替类型别名。
另一方面,如果你无法通过接口来描述一个类型并且需要使用联合类型或元组类型,这时通常会使用类型别名。
以上是关于type 和 interface的区别的主要内容,如果未能解决你的问题,请参考以下文章