(二)typescript中class类

在 TypeScript 中,你可以使用类(class)来更加精确地定义属性和方法的访问控制。这些包括静态属性/方法、私有属性/方法、公共属性/方法、保护属性/方法,以及继承。下面通过示例来展示这些概念在 TypeScript 中的使用。

1. 静态属性和方法

静态属性和方法属于类本身而不是类的实例。这意味着你可以在不实例化类的情况下直接访问它们。

typescript 复制代码
class MyClass {
  static staticProperty: string = "class level property"; // 静态属性
  static staticMethod(): string { // 静态方法
    return 'I am a static method';
  }
}

console.log(MyClass.staticProperty); // 访问静态属性
console.log(MyClass.staticMethod()); // 调用静态方法

2. 私有属性和方法

私有属性和方法只能在类的内部访问,不允许从外部或任何子类中访问。

typescript 复制代码
class Example {
  private privateProperty: string = "I am private"; // 私有属性

  private privateMethod(): string { // 私有方法
    return 'This is a private method';
  }

  public getPrivateMethod(): string {
    return this.privateMethod(); // 内部访问私有方法
  }
}

const obj = new Example();
console.log(obj.getPrivateMethod()); // 正确访问
// console.log(obj.privateMethod()); // 错误,外部不能访问私有方法
// console.log(obj.privateProperty); // 错误,外部不能访问私有属性

3. 公共属性和方法

公共属性和方法是默认的访问级别,在 TypeScript 中不必显式声明为 public,它们可以从类的内部、实例以及子类中自由访问。

typescript 复制代码
class PublicExample {
  public publicProperty: string = "I am public"; // 公共属性

  public publicMethod(): string { // 公共方法
    return 'This is a public method';
  }
}

const example = new PublicExample();
console.log(example.publicProperty); // 访问公共属性
console.log(example.publicMethod()); // 调用公共方法

4. 保护属性和方法

保护属性和方法可以在类及其子类中访问,但不能从类的外部访问。

typescript 复制代码
class ProtectedExample {
  protected protectedProperty: string = "I am protected"; // 保护属性

  protected protectedMethod(): string { // 保护方法
    return 'This is a protected method';
  }
}

class ChildExample extends ProtectedExample {
  useProtectedMethod(): string {
    return this.protectedMethod(); // 子类访问保护方法
  }
}

const child = new ChildExample();
console.log(child.useProtectedMethod()); // 正确访问
// console.log(child.protectedMethod()); // 错误,外部不能访问保护方法

5. 继承

继承允许一个类从另一个类接收属性和方法,这是重用代码的有效方式。

typescript 复制代码
class Parent {
  public parentMethod(): string {
    return 'Method from Parent';
  }
}

class Child extends Parent {
  public childMethod(): string {
    return 'Method from Child';
  }
}

const childInstance = new Child();
console.log(childInstance.parentMethod()); // 子类实例访问继承的方法
console.log(childInstance.childMethod()); // 子类实例访问自己的方法

通过上述示例,你可以看到在 TypeScript 中如何利用类的特性来进行更细粒度的访问控制。这有助于构建更安全、可维护和模块化的大型应用程序。

相关推荐
佛系小嘟嘟2 小时前
Android Jetpack Compose开发小组件【入门篇】
android·开发语言·android jetpack·小组件
Java知识日历3 小时前
【内含例子代码】Spring框架的设计模式应用(第二集)
java·开发语言·后端·spring·设计模式
尘浮生5 小时前
Java项目实战II基于微信小程序的家庭大厨(开发文档+数据库+源码)
java·开发语言·数据库·微信小程序·小程序·maven
军训猫猫头5 小时前
36.Add的用法 C#例子
开发语言·c#
暗碳7 小时前
cloudns二级免费域名python更新ipv6 dns记录
开发语言·python
milo.qu8 小时前
二、CSS基础
前端·javascript·css
个人开发-胡涂涂8 小时前
开源:软件世界的革命者
开发语言·开源
wcyd9 小时前
如何使用Python生成词云图:结合`wordcloud`、`imageio`、`collections`和`jieba`分词模块
开发语言·python·信息可视化
赵大仁10 小时前
【踩坑记录】uni-app 微信小程序调试不更新问题解决指南
javascript·微信小程序·uni-app