翼度科技»论坛 编程开发 JavaScript 查看内容

[TS手册学习] 04_类

5

主题

5

帖子

15

积分

新手上路

Rank: 1

积分
15
TS官方手册:TypeScript: Handbook - The TypeScript Handbook (typescriptlang.org)
类 Class

类的成员

初始化

类的成员属性声明类型:
  1. class Point {
  2.   x: number;
  3.   y: number;
  4. }
复制代码
类的成员属性初始化,会在实例化的时候完成赋值:
  1. class Point {
  2.   x: number = 0;
  3.   y: number = 0;
  4. }
复制代码
严格初始化

--strictPropertyInitialization配置项为true的时候,要求成员属性必须初始化,否则报错。
可以在声明成员属性的时候初始化,也可以在构造函数中初始化。
  1. class GoodGreeter {
  2.     name: string;
  3.     constructor() {
  4.         this.name = "hello";
  5.     }
  6. }
复制代码
如果打算在构造函数以外初始化字段,例如依赖一个外部库来填充类的一部分,则可以使用断言运算符!来声明属性是非空的。
  1. class OKGreeter {
  2.   // 没有初始化,但不会报错
  3.   name!: string;
  4. }
复制代码
只读 readonly

使用readonly修饰,被readonly修饰的成员只能在构造函数中被赋值(初始化),在其它成员方法中的更新操作会导致错误。
  1. class Greeter {
  2.     readonly name: string = "world";
  3.     constructor(otherName?: string) {
  4.         if (otherName !== undefined) {
  5.             this.name = otherName;
  6.         }
  7.     }
  8.     err() {
  9.         // name属性是只读的,这里会导致报错。
  10.         this.name = "not ok";
  11.     }
  12. }
复制代码
构造函数


  • 参数列表的类型声明;
  • 参数的默认值;
  • 构造函数重载:
    1. class Point {
    2.     // Overloads
    3.     constructor(x: number, y: string);
    4.     constructor(s: string);
    5.     constructor(xs: any, y?: any) {
    6.         // TBD
    7.     }
    8. }
    复制代码
构造函数签名与函数签名之间的区别:

  • 构造函数不能使用泛型;
  • 构造函数不能声明返回值类型。
成员方法

成员方法可以像函数一样使用类型标注:参数列表的类型与默认值、返回值类型、泛型、重载......
  1. class Point {
  2.     x = 10;
  3.     y = 10;
  4.     scale(n: number): void {
  5.         this.x *= n;
  6.         this.y *= n;
  7.     }
  8. }
复制代码
:在成员方法中使用成员属性要通过this,否则可能顺着作用域链找到类外部的变量。
  1. let x: number = 0;
  2. class C {
  3.     x: string = "hello";
  4.     m() {
  5.         // 这里的x是第1行的x,类型为number,不能赋值为string,故报错。
  6.         x = "world";
  7.     }
  8. }
复制代码
访问器 getter/setter

在 JS 中,如果没有需要做数据拦截的需求,是不需要用访问器的,大可以直接将属性public暴露到外部。
在 TS 中,访问器存在如下规则:

  • 如果有getter但没有setter,那么属性是只读的readonly;
  • 如果没有指定setter方法的value参数类型,那么则以getter的返回值类型替代;
  • getter和setter的成员可访问性(public/private/protected)必须一致。
索引签名

可以为类的实例定义索引签名,但是很少用,一般将索引数据转移到别处,例如转而使用一个对象类型或者数组类型的成员。
类的继承

和其它面向对象语言一样,JS 中的类可以从基类中继承成员属性和方法。
implements子句(实现接口)
  1. interface Pingable {
  2.     ping(): void;
  3. }
  4. class Sonar implements Pingable {
  5.     ping() {
  6.         console.log("ping!");
  7.     }
  8. }
复制代码
接口只负责声明成员变量和方法,如果一个类要实现一个接口,则需要实现内部的所有方法。
一个类可以实现多个接口。
注意

  • 如果接口中声明了函数的类型,在实现该接口的类中仍要声明类型:
  1. interface Checkable {
  2.     check(name: string): boolean;
  3. }
  4. class NameChecker implements Checkable {
  5.     check(s) {
  6.         // 这里的 s 会被认为是any类型,any类型没有toLowerCase方法,会报错
  7.         return s.toLowerCase() === "ok";
  8.     }
  9. }
复制代码

  • 当一个类实现一个接口时,这个接口中的可选属性(optional property)不会被待到类中。
extends子句(继承基类)
  1. class A extends B{}
复制代码
其中A被称为子类或派生类,B是父类或基类。
继承一个类将继承它的所有成员属性和方法。
方法重写(overriding methods)
可以使用super获取到父类的方法。
  1. class Base {
  2.     greet() {
  3.         console.log("Hello, world!");
  4.     }
  5. }
  6. class Derived extends Base {
  7.     greet(name?: string) {
  8.         if (name === undefined) {
  9.             super.greet();
  10.         } else {
  11.             console.log(`Hello, ${name.toUpperCase()}`);
  12.         }
  13.     }
  14. }
  15. const d = new Derived();
  16. d.greet();
  17. d.greet("reader");
复制代码
可以将一个子类的实例赋值给一个父类的实例(实现多态的基础)。
成员可访问性 member visibility

public

缺省值。使用public修饰的成员可以被任意访问。
protected

只有这个类和它的子类的成员可以访问。
子类在修饰继承自父类的成员可访问性时,最好带上protected,否则会默认地变成public,将成员暴露给外部。
  1. class Base {
  2.   protected m = 10;
  3. }
  4. class Derived extends Base {
  5.   // 没有修饰,默认表示public
  6.   m = 15;
  7. }
  8. const d = new Derived();
  9. console.log(d.m); // 暴露到外部了
复制代码
跨继承访问protected成员
protected的定义就是只有类本身和子类可以访问。但是在某些面向对象的编程语言中可以通过基类的引用,访问到非本身且非子类的protected成员。
这种操作在 Java 中被允许,但是在C#、C++、TS 中是非法操作。
原则是:如果D2不是D1的子类,根据protected的定义这种访问方式就是不合法的。那么基类跨越这种技巧不能很好的解决问题。当在编码的过程中遇到这种无法访问的权限问题时,应更多地思考类之间的结构设计,而不是采用这种取巧的方式。
  1. class Base {
  2.     protected x: number = 1;
  3. }
  4. class Derived1 extends Base {
  5.     protected x: number = 5;
  6. }
  7. class Derived2 extends Base {
  8.     f1(other: Derived2) {
  9.         other.x = 10;
  10.     }
  11.     f2(other: Derived1) {
  12.         // x被protected修饰,只能被Derived1的子类访问,但是Derived2不是它的子类,无权访问,会报错。
  13.         other.x = 10;
  14.     }
  15. }
复制代码
private

只有类本身可以访问。
与protected不同,protected在子类中可访问,因此可以在子类中进一步开放可访问性(即改为public)。
但是private修饰的成员无法在子类中访问,因为无法进一步开放可访问性。
跨实例访问private成员
不同的实例只要是由一个类创建,那么它们就可以相互访问各自实例上由private修饰的成员。
  1. class A {
  2.     private x = 10;
  3.     public sameAs(other: A) {
  4.         // 不会报错,因为TS支持跨实例访问private成员
  5.         return other.x === this.x;
  6.     }
  7. }
复制代码
大多数面向对象语言支持这种特性,例如:Java,C#,C++,Swift,PHP;TS 也支持。Ruby不支持。
注意事项


  • 成员可访问性只在TS的类型检查过程中有效,在最终的 JS 运行时下是无效的,在 JS 运行时下,in操作符和其它获取对象属性的方法可以获取到对象的所有属性,不管在 TS 中它们是public还是protected还是private修饰的。
  • private属性支持使用obj.[key]格式访问,使得单元测试更加方便,但是这种访问方式执行的是不严格的private:
    1. class MySafe {
    2.   private secretKey = 12345;
    3. }
    4. const s = new MySafe();
    5. // 由private修饰的成员无法被访问,这里会报错。
    6. console.log(s.secretKey);
    7. // 使用字符串索引访问,不严格,不会报错。
    8. console.log(s["secretKey"]);
    复制代码
静态成员

基本特性

静态成员绑定在类对象上,不需要实例化对象就能访问。
静态成员也可以通过public,protected,private修饰可访问性。
静态成员也可以被继承。
静态成员不能取特殊的变量名,例如:name,length,call等等。
不要使用Function原型上的属性作为静态成员的变量名,会因为冲突而出错。
静态代码块static block

静态代码块中可以访问到类内部的所有成员和类外部的内容,通常静态代码块用来初始化类。
  1. class Foo {
  2.     static #count = 0;
  3.     get count() {
  4.         return Foo.#count;
  5.     }
  6.     static {
  7.         try {
  8.             const lastInstances = loadLastInstances();
  9.             Foo.#count += lastInstances.length;
  10.         }
  11.         catch {}
  12.     }
  13. }
复制代码
泛型类
  1. class Box<Type> {
  2.     contents: Type;
  3.     constructor(value: Type) {
  4.         this.contents = value;
  5.     }
  6. }
  7. const b = new Box("hello!");
复制代码
泛型类的静态成员不能引用类型参数。
this 在运行时的指向问题
  1. class MyClass {
  2.     name = "MyClass";
  3.     getName() {
  4.         return this.name;
  5.     }
  6. }
  7. const c = new MyClass();
  8. const obj = {
  9.     name: "obj",
  10.     getName: c.getName,
  11. };
  12. // 这里会输出"MyClass"
  13. console.log(c.getName());
  14. // 这里输出结果是"obj",而不是"MyClass",因为方法是通过obj调用的。
  15. console.log(obj.getName());
复制代码
类的方法内部的this默认指向类的实例。但是一旦将方法挑出外部,单独调用,就很可能报错。因为函数中的this指向调用该函数的对象,成员方法中的this不一定指向它的实例对象,而是指向实际调用它的对象。
一种解决方法:使用箭头函数。
箭头函数中的this指向取决于定义该箭头函数时所处的上下文,而不是调用时。
  1. class MyClass {
  2.     name = "MyClass";
  3.     getName = () => {
  4.         return this.name;
  5.     };
  6. }
  7. const c = new MyClass();
  8. const g = c.getName;
  9. // 这里会输出"MyClass"
  10. console.log(g());
复制代码


  • 这种解决方案不需要 TS 也能实现;
  • 这种做法会需要更多内存,因为箭头函数不会被放到原型上,每个实例对象都有相互独立的getName方法;
  • 也因为getName方法没有在原型链上,在这个类的子类中,无法使用super.getName访问到getName方法。
另一种解决方法:指定this的类型
我们希望this指向实例对象,意味着this的类型应该是MyClass而不能是其他,通过这种类型声明可以在出错的时候及时发现。
  1. class MyClass {
  2.     name = "MyClass";
  3.     // 指定this必须是MyClass类型
  4.     getName(this: MyClass) {
  5.         return this.name;
  6.     }
  7. }
  8. const c = new MyClass();
  9. // OK
  10. c.getName();
  11. const g = c.getName;
  12. // Error: 这里的this会指向undefined或者全局对象。
  13. console.log(g());
复制代码


  • 每个类定义分配一个函数,而不是每个类实例分配一个函数;
  • 可以使用super调用,因为存在于原型链上。
this 类型

在类里存在一种特殊的类型this,表示当前类。
返回值类型为this的情况
  1. class Box {
  2.     contents: string = "";
  3.     // set方法返回了this(这里的this是对象的引用),因此set方法的返回值类型被推断为this(这里的this是类型)
  4.     set(value: string) {
  5.         this.contents = value;
  6.         return this;
  7.     }
  8. }
复制代码
参数类型为this的情况
  1. class Box {
  2.     content: string = "";
  3.     sameAs(other: this) {
  4.         return other.content === this.content;
  5.     }
  6. }
复制代码
这种情况下的other:this与other:Box不同,当一个类继承自Box时,子类中的sameAs方法的this类型将指向子类类型而不是Box。
使用this进行类型守护(type guards)

可以在类或接口的方法的返回值类型处使用this is Type,并搭配if语句进行类型收束。
  1. class FileSystemObject {
  2.     isFile(): this is FileRep {
  3.         return this instanceof FileRep;
  4.     }
  5.     isDirectory(): this is Directory {
  6.         return this instanceof Directory;
  7.     }
  8.     isNetworked(): this is Networked & this {
  9.         return this.networked;
  10.     }
  11.         constructor(public path: string, private networked: boolean) {}
  12. }
  13. // 这里省略了子类的定义...
  14. // 当需要类型收束时:
  15. const fso: FileSystemObject = new FileRep("foo/bar.txt", "foo");
  16. if (fso.isFile()) {
  17.     // 调用isFile方法将返回boolean类型,并且在这个块内,fso的类型会收束为FileRep
  18.     fso.content;
  19. } else if (fso.isDirectory()) {
  20.     fso.children;
  21. } else if (fso.isNetworked()) {
  22.     fso.host;
  23. }
复制代码
另外一种常用的情景是:移除undefined类型。
  1. class Box<T> {
  2.     value?: T;
  3.     hasValue(): this is { value: T } {
  4.         return this.value !== undefined;
  5.     }
  6. }
  7. const box = new Box();
  8. box.value = "Gameboy";
  9. // (property) Box<unknown>.value?: unknown
  10. box.value;
  11. if (box.hasValue()) {
  12.     // (property) value: unknown
  13.     box.value;
  14. }
复制代码
参数属性

由于构造函数的参数列表和成员属性的属性名大多数时候都是一致的:
  1. class Box{
  2.     private width: number = 0;
  3.     private height: number = 0;
  4.     constructor(width: number, height:number){
  5.         this.width = width;
  6.         this.height = height;
  7.     }
  8. }
复制代码
TS 支持给类构造函数的参数添加修饰,例如public,protected,private,readonly。只需要在参数列表添加修饰就完成初始化操作,不需要写构造函数的函数体:
  1. class Params {
  2.     constructor(
  3.             public readonly x: number,
  4.              protected y: number,
  5.              private z: number
  6.     ) {
  7.         // 不需要函数体
  8.     }
  9. }
  10. const a = new Params(1, 2, 3);
  11. console.log(a.x); // 1
  12. console.log(a.z); // Error: z是私有属性,无法访问
复制代码
类表达式

类表达式和类的声明十分相似,类表达式可以是匿名的,也可以将其赋值给任意标识符并引用它。
  1. const someClass = class<Type> {
  2.     content: Type;
  3.     constructor(value: Type) {
  4.         this.content = value;
  5.     }
  6. };
  7. const m = new someClass("Hello, world");
复制代码
类表达式实际上是 JS 就有的语法,TS 只是提供了类型标注、泛型等额外的特性。
获取实例类型

使用InstanceType
  1. class Point {
  2.     createdAt: number;
  3.     x: number;
  4.     y: number;
  5.     constructor(x: number, y: number) {
  6.         this.createdAt = Date.now();
  7.         this.x = x;
  8.         this.y = y;
  9.     }
  10. }
  11. // 获取Point这个类的实例类型
  12. type PointInstance = InstanceType<typeof Point>
  13. function moveRight(point: PointInstance) {
  14.     point.x += 5;
  15. }
  16. const point = new Point(3, 4);
  17. moveRight(point);
  18. point.x; // => 8
复制代码
<blockquote>似乎这里可以直接用point:Point替代point:PointInstance,但是在其它没有使用class(语法糖)的场景下,InstanceType有以下作用:


来源:https://www.cnblogs.com/feixianxing/p/typescript-handbook-class-member-method-property-constructor-readonly-visibility-static-this.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具