重写 TypeScript 中的类方法
要覆盖 TypeScript 中的类方法,需要从父类扩展并定义一个具有相同名称的方法。 请注意,参数的类型和方法的返回类型必须与父级的实现兼容。
class Parent {
doMath(a: number, b: number): number {
console.log(`result is: ${a + b}`);
return a + b;
}
}
class Child extends Parent {
doMath(a: number, b: number): number {
console.log(`result is ${a * b}`);
// 👇️ 这会调用父级的 doMath 方法 super.doMath(a, b);
return a * b;
}
}
const child1 = new Child();
// 👇️ result is 100
child1.doMath(10, 10);
示例中的 Parent 类定义了一个 doMath
方法。 该方法接受 2 个 number 类型的参数并返回一个数字。
Child 类从 Parent 扩展并覆盖其 doMath
方法。
注意
,Child 类中的doMath
方法的类型必须符合 Parent 中方法的类型。
如果方法的类型不匹配,我们将收到错误消息,看下面的示例
class Parent {
doMath(a: number, b: number): number {
console.log(`result is: ${a + b}`);
return a + b;
}
}
class Child extends Parent {
// ⛔️ Error: Property 'doMath' in type 'Child' is
// not assignable to the same property in base type 'Parent'.
doMath(a: string, b: string): string {
return a * b;
}
}
如果需要调用父方法的实现,使用 super
关键字。
class Parent {
doMath(a: number, b: number): number {
console.log(`result is: ${a + b}`);
return a + b;
}
}
class Child extends Parent {
doMath(a: number, b: number): number {
console.log(`result is ${a * b}`);
// 👇️ 这会调用父类的 doMath 方法
super.doMath(a, b);
return a * b;
}
}
const child1 = new Child();
// 👇️ result is 100
child1.doMath(10, 10);
// 👉️ parent's method logs `result is: 20`
super
关键字用于访问和调用对象父对象的方法。
当使用构造方法从类扩展时,必须先在子构造方法中调用 super()
,然后才能使用 this
关键字。
class Parent {
name = 'Parent';
constructor(public a: number, public b: number) {
this.a = a;
this.b = b;
}
doMath(): number {
console.log(`result is: ${this.a + this.b}`);
return this.a + this.b;
}
}
class Child extends Parent {
name = 'Child';
constructor(public a: number) {
// 👇️ Call super here
super(a, a);
this.a = a;
}
doMath(): number {
console.log(`result is ${this.a * this.a}`);
// 👇️ this calls parent's doMath method
super.doMath();
return this.a * this.a;
}
}
const child1 = new Child(100);
// 👇️ result is 10000
child1.doMath();
// 👉️ parent's method logs `result is: 200`
Child 类有一个构造方法,所以我们必须先调用 super()
来执行父类的构造方法,然后才能在 Child 中使用 this
关键字。
相关文章
在 AngularJs 中设置 Select From Typescript 的默认选项值
发布时间:2023/04/14 浏览次数:78 分类:Angular
-
本教程提供了在 AngularJs 中从 TypeScript 中设置 HTML 标记选择的默认选项的解释性解决方案。
在 Angular 中使用 TypeScript 的 getElementById 替换
发布时间:2023/04/14 浏览次数:153 分类:Angular
-
本教程指南提供了有关使用 TypeScript 在 Angular 中替换 document.getElementById 的简要说明。这也提供了在 Angular 中 getElementById 的最佳方法。
在 TypeScript 中使用 try..catch..finally 处理异常
发布时间:2023/03/19 浏览次数:181 分类:TypeScript
-
本文详细介绍了如何在 TypeScript 中使用 try..catch..finally 进行异常处理,并附有示例。
在 TypeScript 中使用 declare 关键字
发布时间:2023/03/19 浏览次数:97 分类:TypeScript
-
本教程指南通过特定的实现和编码示例深入了解了 TypeScript 中 declare 关键字的用途。
在 TypeScript 中 get 和 set
发布时间:2023/03/19 浏览次数:172 分类:TypeScript
-
本篇文章演示了类的 get 和 set 属性以及如何在 TypeScript 中实现它。
在 TypeScript 中格式化日期和时间
发布时间:2023/03/19 浏览次数:161 分类:TypeScript
-
本教程介绍内置对象 Date() 并讨论在 Typescript 中获取、设置和格式化日期和时间的各种方法。
在 TypeScript 中返回一个 Promise
发布时间:2023/03/19 浏览次数:182 分类:TypeScript
-
本教程讨论如何在 TypeScript 中返回正确的 Promise。这将提供 TypeScript 中 Returns Promise 的完整编码示例,并完整演示每个步骤。
在 TypeScript 中定义函数回调的类型
发布时间:2023/03/19 浏览次数:221 分类:TypeScript
-
本教程说明了在 TypeScript 中为函数回调定义类型的解决方案。为了程序员的方便和方便,实施了不同的编码实践指南。
在 TypeScript 中把 JSON 对象转换为一个类
发布时间:2023/03/19 浏览次数:110 分类:TypeScript
-
本教程演示了如何将 JSON 对象转换为 TypeScript 中的类。