当前位置: 首页 > news >正文

Typescript入门-interface讲解

  • 对象成员语法形式
    • 1)对象属性
    • 2)对象的属性索引
    • 3)对象的方法
    • 4)函数
    • 5)构造函数
  • interface 的继承
    • interface 继承 interface
    • interface 继承 type
    • interface 继承 class
  • 接口合并
  • interface 与 type 的异同

interface 是对象的模板,可以看作是一种类型约定,中文译为“接口”。使用了某个模板的对象,就拥有了指定的类型结构。

interface Person {firstName: string;lastName: string;age: number;
}

上面示例中,定义了一个接口Person,它指定一个对象模板,拥有三个属性firstName、lastName和age。任何实现这个接口的对象,都必须部署这三个属性,并且必须符合规定的类型。

实现该接口很简单,只要指定它作为对象的类型即可。

const p: Person = {firstName: "John",lastName: "Smith",age: 25,
};

上面示例中,变量p的类型就是接口Person,所以必须符合Person指定的结构。

方括号运算符可以取出 interface 某个属性的类型。

interface Foo {a: string;
}type A = Foo["a"]; // string

上面示例中,Foo[‘a’] 返回属性a的类型,所以类型A就是string。

对象成员语法形式

interface 可以表示对象的各种语法,它的成员有 5 种形式。

  • 对象属性
  • 对象的属性索引
  • 对象方法
  • 函数
  • 构造函数

1)对象属性

interface Point {x: number;y: number;
}

上面示例中,x和y都是对象的属性,分别使用冒号指定每个属性的类型。

属性之间使用分号或逗号分隔,最后一个属性结尾的分号或逗号可以省略。

如果属性是可选的,就在属性名后面加一个问号。

interface Foo {x?: string;
}

如果属性是只读的,需要加上 readonly 修饰符。

interface A {readonly a: string;
}

2)对象的属性索引

interface A {[prop: string]: number;
}

上面示例中,[prop: string] 就是属性的字符串索引,表示属性名只要是字符串,都符合类型要求。

属性索引共有stringnumbersymbol三种类型。

一个接口中,最多只能定义一个字符串索引。字符串索引会约束该类型中所有名字为字符串的属性。

interface MyObj {[prop: string]: number;a: boolean; // 编译错误
}

上面示例中,属性索引指定所有名称为字符串的属性,它们的属性值必须是数值(number)。属性a的值为布尔值就报错了。

属性的数值索引,其实是指定数组的类型。

interface A {[prop: number]: string;
}const obj: A = ["a", "b", "c"];

上面示例中,[prop: number] 表示属性名的类型是数值,所以可以用数组对变量obj赋值。

同样的,一个接口中最多只能定义一个数值索引。数值索引会约束所有名称为数值的属性。

如果一个 interface 同时定义了字符串索引和数值索引,那么数值索性必须服从于字符串索引。因为在 JavaScript 中,数值属性名最终是自动转换成字符串属性名。

interface A {[prop: string]: number;[prop: number]: string; // 报错
}interface B {[prop: string]: number;[prop: number]: number; // 正确
}

上面示例中,数值索引的属性值类型与字符串索引不一致,就会报错。数值索引必须兼容字符串索引的类型声明。

3)对象的方法

对象的方法共有三种写法。

// 写法一
interface A {f(x: boolean): string;
}// 写法二
interface B {f: (x: boolean) => string;
}// 写法三
interface C {f: { (x: boolean): string };
}

属性名可以采用表达式,所以下面的写法也是可以的。

const f = "f";interface A {[f](x: boolean): string;
}

重载(Overloading)是指在同一个作用域中,允许多个同名的方法或函数根据参数的数量或类型不同而有不同的实现。在 TypeScript 的接口(interface)中,方法可以声明多种参数和返回值类型的组合,这就是方法重载。例如:

interface A {f(): number;f(x: boolean): boolean;f(x: string, y: string): string;
}

上面例子中,接口 A 的方法 f 有三种不同的参数签名,这就是方法的重载。实现时,可以根据传入参数的不同,执行不同的逻辑。

interface 里面的函数重载,不需要给出实现。但是,由于对象内部定义方法时,无法使用函数重载的语法,所以需要额外在对象外部给出函数方法的实现。

interface A {f(): number;f(x: boolean): boolean;f(x: string, y: string): string;
}function MyFunc(): number;
function MyFunc(x: boolean): boolean;
function MyFunc(x: string, y: string): string;
function MyFunc(x?: boolean | string, y?: string): number | boolean | string {if (x === undefined && y === undefined) return 1;if (typeof x === "boolean" && y === undefined) return true;if (typeof x === "string" && typeof y === "string") return "hello";throw new Error("wrong parameters");
}const a: A = {f: MyFunc,
};

上面示例中,接口A的方法f()有函数重载,需要额外定义一个函数MyFunc()实现这个重载,然后部署接口A的对象a的属性f等于函数MyFunc()就可以了。

4)函数

interface 也可以用来声明独立的函数。

interface Add {(x: number, y: number): number;
}const myAdd: Add = (x, y) => x + y;

上面示例中,接口Add声明了一个函数类型。

5)构造函数

interface 内部可以使用 new 关键字,表示构造函数。

interface ErrorConstructor {new (message?: string): Error;
}

上面示例中,接口 ErrorConstructor 内部有 new 命令,表示它是一个构造函数。TypeScript 里面,构造函数特指具有 constructor 属性的类。

interface 的继承

interface 可以继承其他类型,主要有下面几种情况。

interface 继承 interface

interface 可以使用 extends 关键字,继承其他 interface

interface Shape {name: string;
}interface Circle extends Shape {radius: number;
}

上面示例中,Circle 继承了 Shape,所以Circle其实有两个属性name和radius。这时,Circle是子接口,Shape是父接口。

extends 关键字会从继承的接口里面拷贝属性类型,这样就不必书写重复的属性。

interface 允许多重继承。

interface Style {color: string;
}interface Shape {name: string;
}interface Circle extends Style, Shape {radius: number;
}

上面示例中,Circle 同时继承了 Style 和 Shape,所以拥有三个属性color、name和radius。

多重接口继承,实际上相当于多个父接口的合并。

如果子接口与父接口存在同名属性,那么子接口的属性会覆盖父接口的属性。注意,子接口与父接口的同名属性必须是类型兼容的,不能有冲突,否则会报错。

interface Foo {id: string;
}interface Bar extends Foo {id: number; // 报错
}

上面示例中,Bar继承了Foo,但是两者的同名属性id的类型不兼容,导致报错。

多重继承时,如果多个父接口存在同名属性,那么这些同名属性不能有类型冲突,否则会报错。

interface Foo {id: string;
}interface Bar {id: number;
}// 报错
interface Baz extends Foo, Bar {type: string;
}

上面示例中,Baz同时继承了Foo和Bar,但是后两者的同名属性id有类型冲突,导致报错。

interface 继承 type

interface 可以继承 type 命令定义的对象类型。

type Country = {name: string;capital: string;
};interface CountryWithPop extends Country {population: number;
}

上面示例中,CountryWithPop 继承了 type 命令定义的 Country 对象,并且新增了一个population 属性。

注意,如果 type 命令定义的类型不是对象,interface 就无法继承。

interface 继承 class

interface 还可以继承 class,即继承该类的所有成员。

class A {x: string = "";y(): boolean {return true;}
}interface B extends A {z: number;
}

上面示例中,B 继承了 A,因此 B 就具有属性x、y()和z。

实现B接口的对象就需要实现这些属性。

const b: B = {x: "",y: function () {return true;},z: 123,
};

上面示例中,对象 b 就实现了接口 B,而接口 B 又继承了类 A。

某些类拥有私有成员和保护成员,interface 可以继承这样的类,但是意义不大。

class A {private x: string = "";protected y: string = "";
}interface B extends A {z: number;
}// 报错
const b: B = {/* ... */
};// 报错
class C implements B {// ...
}

上面示例中,A 有私有成员和保护成员,B 继承了 A,但无法用于对象,因为对象不能实现这些成员。这导致 B 只能用于其他 class,而这时其他 class 与 A 之间不构成父类和子类的关系,使得 x 与 y 无法部署。

接口合并

多个同名接口会合并成一个接口。

interface Box {height: number;width: number;
}interface Box {length: number;
}

上面示例中,两个Box接口会合并成一个接口,同时有height、width和length三个属性。

这样的设计主要是为了兼容 JavaScript 的行为。JavaScript 开发者常常对全局对象或者外部库,添加自己的属性和方法。那么,只要使用 interface 给出这些自定义属性和方法的类型,就能自动跟原始的 interface 合并,使得扩展外部类型非常方便。

举例来说,Web 网页开发经常会对 windows 对象和 document 对象添加自定义属性,但是 TypeScript 会报错,因为原始定义没有这些属性。解决方法就是把自定义属性写成 interface,合并进原始定义。

interface Document {foo: string;
}document.foo = "hello";

上面示例中,接口 Document 增加了一个自定义属性 foo,从而就可以在 document 对象上使用自定义属性。

同名接口合并时,同一个属性如果有多个类型声明,彼此不能有类型冲突。

interface A {a: number;
}interface A {a: string; // 报错
}

上面示例中,接口 A 的属性 a 有两个类型声明,彼此是冲突的,导致报错。

同名接口合并时,如果同名方法有不同的类型声明,那么会发生函数重载。而且,后面的定义比前面的定义具有更高的优先级。

interface Cloner {clone(animal: Animal): Animal;
}interface Cloner {clone(animal: Sheep): Sheep;
}interface Cloner {clone(animal: Dog): Dog;clone(animal: Cat): Cat;
}// 等同于
interface Cloner {clone(animal: Dog): Dog;clone(animal: Cat): Cat;clone(animal: Sheep): Sheep;clone(animal: Animal): Animal;
}

上面示例中,clone()方法有不同的类型声明,会发生函数重载。这时,越靠后的定义,优先级越高,排在函数重载的越前面。比如,clone(animal: Animal)是最先出现的类型声明,就排在函数重载的最后,属于clone()函数最后匹配的类型。

这个规则有一个例外。同名方法之中,如果有一个参数是字面量类型字面量类型有更高的优先级

interface A {f(x: "foo"): boolean;
}interface A {f(x: any): void;
}// 等同于
interface A {f(x: "foo"): boolean;f(x: any): void;
}

上面示例中,f()方法有一个类型声明参数x是字面量类型,这个类型声明的优先级最高,会排在函数重载的最前面。

一个实际的例子是 Document 对象的createElement()方法,它会根据参数的不同,而生成不同的 HTML 节点对象。

interface Document {createElement(tagName: any): Element;
}
interface Document {createElement(tagName: "div"): HTMLDivElement;createElement(tagName: "span"): HTMLSpanElement;
}
interface Document {createElement(tagName: string): HTMLElement;createElement(tagName: "canvas"): HTMLCanvasElement;
}// 等同于
interface Document {createElement(tagName: "canvas"): HTMLCanvasElement;createElement(tagName: "div"): HTMLDivElement;createElement(tagName: "span"): HTMLSpanElement;createElement(tagName: string): HTMLElement;createElement(tagName: any): Element;
}

上面示例中,createElement()方法的函数重载,参数为字面量的类型声明会排到最前面,返回具体的 HTML 节点对象。类型越不具体的参数,排在越后面,返回通用的 HTML 节点对象。

如果两个 interface 组成的联合类型存在同名属性,那么该属性的类型也是联合类型。

interface Circle {area: bigint;
}interface Rectangle {area: number;
}declare const s: Circle | Rectangle;s.area; // bigint | number

上面示例中,接口 Circle 和 Rectangle 组成一个联合类型Circle | Rectangle。因此,这个联合类型的同名属性area,也是一个联合类型。本例中的 declare 命令表示变量 s 的具体定义,由其他脚本文件给出。

interface 与 type 的异同

interface 命令与 type 命令作用类似,都可以表示对象类型。

很多对象类型即可以用 interface 表示,也可以用 type 表示。而且,两者往往可以换用,几乎所有的 interface 命令都可以改写为 type 命令。

它们的相似之处,首先表现在都能为对象类型起名。

type Country = {name: string;capital: string;
};interface Coutry {name: string;capital: string;
}

上面示例是 type 命令和 interface 命令,分别定义同一个类型。

class 命令也有类似作用,通过定义一个类,同时定义一个对象类型。但是,它会创造一个值,编译后依然存在。如果只是单纯想要一个类型,应该使用 typeinterface

interfacetype 的区别有下面几点。

(1)type 能够表示非对象类型,而 interface 只能表示对象类型(包括数组函数等)。

(2)interface 可以继承其他类型,type 不支持继承。

继承的主要作用是添加属性,type 定义的对象类型如果想要添加属性,只能使用&运算符,重新定义一个类型。

type Animal = {name: string;
};type Bear = Animal & {honey: boolean;
};

上面示例中,类型 Bear 在 Animal 的基础上添加了一个属性 honey。

上例的 & 运算符,表示同时具备两个类型的特征,因此可以起到两个对象类型合并的作用。

作为比较,interface 添加属性,采用的是继承的写法。

interface Animal {name: string;
}interface Bear extends Animal {honey: boolean;
}

继承时,typeinterface 是可以换用的。interface 可以继承 type

type Foo = { x: number };interface Bar extends Foo {y: number;
}

type 也可以继承 interface。

interface Foo {x: number;
}type Bar = Foo & { y: number };

(3)同名 interface 会自动合并,同名 type 则会报错。也就是说,TypeScript 不允许使用 type 多次定义同一个类型。

type A = { foo: number }; // 报错
type A = { bar: number }; // 报错

上面示例中,type两次定义了类型A,导致两行都会报错。

作为比较,interface 则会自动合并。

interface A {foo: number;
}
interface A {bar: number;
}const obj: A = {foo: 1,bar: 1,
};

上面示例中,interface 把类型A的两个定义合并在一起。

这表明,interface 是开放的,可以添加属性,type 是封闭的,不能添加属性,只能定义新的 type。

(4)interface 不能包含属性映射(mapping),type 可以

interface Point {x: number;y: number;
}// 正确
type PointCopy1 = {[Key in keyof Point]: Point[Key];
};// 报错
interface PointCopy2 {[Key in keyof Point]: Point[Key];
};

(5)this 关键字只能用于 interface

// 正确
interface Foo {add(num: number): this;
}// 报错
type Foo = {add(num: number): this;
};

上面示例中,type 命令声明的方法add(),返回this就报错了。interface 命令没有这个问题。

下面是返回 this 的实际对象的例子。

interface GetInfo {(x:number): this
}const getInfo:GetInfo = function (x: number) {return this;
}

(6)interface 可以直接扩展原始数据类型,type只能间接实现

  • interface

    我们可以通过扩展全局接口(Global Interfaces)来为原始数据类型添加新的方法或属性。这是因为 TypeScript 的原始类型(如stringnumberboolean等)都有对应的全局接口定义。

    // 扩展Number接口
    interface Number {isEven(): boolean;toPercentage(): string;
    }// 实现扩展的方法
    Number.prototype.isEven = function() {return this % 2 === 0;
    };Number.prototype.toPercentage = function() {return `${this * 100}%`;
    };// 使用示例
    const num1 = 10;
    console.log(num1.isEven()); // 输出: trueconst num2 = 0.75;
    console.log(num2.toPercentage()); // 输出: "75%"
    

    注意事项:在模块化项目中,需要使用declare global包裹接口扩展:

    declare global {interface Number {// 扩展方法定义}
    }
    

    但需要避免过度扩展原始类型,以免造成代码维护困难和潜在冲突。那有没有更好的方式来规避这个问题,我们接着看。

  • type

    在 TypeScript 中,无法直接用 type 扩充原生 Number 类型,这是由 TypeScript 的类型系统设计决定的:原生类型(如Number)的扩展只能通过 interface 的声明合并实现,而 type 不支持声明合并。

    不过,可以通过type创建一个 “增强版数字类型”,并关联扩展方法,间接实现类似效果:

    // 1. 用type定义增强型数字类型(本质仍是number,但带有扩展语义)
    type EnhancedNumber = number;// 2. 定义扩展方法的类型(约束方法参数和返回值)
    type NumberExtensions = {isEven: (num: EnhancedNumber) => boolean;toPercent: (num: EnhancedNumber) => string;
    };// 3. 实现扩展方法
    const enhance: NumberExtensions = {isEven: (num) => num % 2 === 0,toPercent: (num) => `${(num * 100)}%`
    };// 4. 使用示例
    const num: EnhancedNumber = 0.25;// 调用扩展方法(通过工具对象关联)
    console.log(enhance.isEven(4)); // 输出: true
    console.log(enhance.toPercent(num)); // 输出: "25.0%"// 仍可使用原生Number方法
    console.log(num.toFixed(2)); // 输出: "0.25"
    

    核心区别说明:

    • type的局限性:type 是类型别名,无法像 interface 那样通过声明合并扩展原生类型的方法集,只能通过工具函数 / 对象间接关联扩展功能。
    • 实现思路:通过type EnhancedNumber = number创建语义化类型,再用type约束扩展方法的类型,最后通过工具对象实现功能。
    • 类型安全:这种方式仍能保证类型一致性,同时保留原生数字的所有特性。

    如果需要直接在数字实例上调用扩展方法(如 num.isEven()),必须使用 interface 的声明合并,这是 TypeScript 规范中扩展原生类型的唯一方式。type 更适合创建语义化类型或组合类型,而非直接扩展原生类型的方法。

(7)interface 无法表达某些复杂类型(比如交叉类型联合类型),但是 type 可以。

type A = {/* ... */
};
type B = {/* ... */
};type AorB = A | B;
type AorBwithName = AorB & {name: string;
};

上面示例中,类型 AorB 是一个联合类型,AorBwithName则是为AorB添加一个属性。这两种运算,interface 都没法表达。

综上所述,如果有复杂的类型运算,那么没有其他选择只能使用 type;一般情况下,interface灵活性比较高,便于扩充类型或自动合并,建议优先使用。

http://www.dtcms.com/a/352281.html

相关文章:

  • 类型签名,位置参数,关键字参数
  • open webui源码分析8—管道
  • 域名常见问题集(十一)——为什么要进行域名管理?
  • 【实时Linux实战系列】基于实时Linux的音频实时监控系统
  • 从16个粉丝到680万年收入:AI创业的117天奇迹
  • 声明式微服务通信新范式:OpenFeign如何简化RestTemplate调用
  • Windows下实现类似`watch nvidia-smi`的实时监控效果
  • 进入docker中mysql容器的方法
  • Java:TreeSet的使用
  • (Arxiv-2024)VideoMaker:零样本定制化视频生成,依托于视频扩散模型的内在力量
  • QT qml(quick3D)模型的移动
  • 专业解读《Light》封面:可调谐混合超表面(THCMs)如何革新下一代LiDAR系统
  • 3D游戏角色建模资源搜索指南(资料来源于网络)
  • 湖仓一体:小米集团基于 Apache Doris + Apache Paimon 实现 6 倍性能飞跃
  • JavaWeb之分布式事务规范
  • LInux(二十一)——Linux SSH 基于密钥交换的自动登录原理简介及配置说明
  • jenkins2025配置邮箱发送
  • 基于Android的车位预售预租APP/基于Android的车位租赁系统APP/基于Android的车位管理系统APP
  • Leetcode—1163. 按字典序排在最后的子串【困难】
  • Linux(二十二)——服务器初始化指南
  • cuda编程笔记(16)--使用 cuDNN 实现卷积、激活、池化等反向操作
  • 刀客doc:沃尔玛取消与TTD的独家合作,对程序化广告意味着什么?
  • 【RAGFlow代码详解-23】聊天系统架构
  • 字节跳动国际版 TRAE 深度解析:重新定义 AI 时代的编程体验
  • Docker化性能监控平台搭建:JMeter+InfluxDB+Grafana全攻略
  • Vite 模块联邦插件 实现微前端架构,其核心原理概述
  • 网络安全零基础入门:2025核心知识与系统学习路径分享
  • 工地考勤数据、监控回传与远程办公需求,如何通过贝锐蒲公英实现?
  • 做项目总是出问题,如何提升项目管理能力?
  • (MySQL索引事务) 本节目标 索引 事务