TypeScript 学习笔记 — 类的基本用法(五)
类的组成部分:构造函数、属性(实例属性、原型属性、静态属性)、方法(实例方法、原型方法、静态方法、访问器)
TS 中定义类
实例属性/方法:所有实例上的属性和方法都需要先声明后再使用
class Circle {
x: number;
y: number;
constructor(x: number, y: number = 0, ...args: number[]) {
// 默认值、剩余运算符
this.x = x;
this.y = y;
}
}
let circle = new Circle(100);
类中实例属性、方法 + 修饰符
上述代码当构造函数参数比较多时,声明就会显得很多,结构不友好,此时需要使用类的修饰符
来解决,表示可访问的范围或权限
类的修饰符分类: public (公开的:自己,子类,外界)、protected(受保护的:自己、子类)、private(私有的:自己)、readonly(只读的)
public
class Animal {
/*
public name!: string; // 不写public默认也是公开的
public age!: number;
constructor(name: string, age: number) {
this.name = name;
this.age = age;
}
*/
// 可以简写为:直接在参数前添加对应的修饰符,就会默认添加到实例中,相当于已经声明
constructor(public name: string, public age: number) {
this.name = name;
this.age = age;
}
}
class Cat extends Animal {
constructor(name: string, age: number) {
super(name, age);
console.log(this.name, this.age); // 子类访问
}
}
let p = new Cat("Tom", 18);
console.log(p.name, p.age); // 外层访问
protected
class Animal {
// 可以简写为:直接在参数前添加对应的修饰符,就会默认添加到实例中,相当于已经声明
constructor(protected name: string, protected age: number) {
this.name = name;
this.age = age;
}
}
class Cat extends Animal {
constructor(name: string, age: number) {
super(name, age);
console.log(this.name, this.age); // 子类访问
}
}
let p = new Cat("Tom", 18);
console.log(p.name, p.age); // 异常:属性“name”受保护,只能在类“Animal”及其子类中访问
private
class Animal {
constructor(private name: string, private age: number) {
this.name = name;
this.age = age;
}
}
class Cat extends Animal {
constructor(name: string, age: number) {
super(name, age);
console.log(this.name, this.age); // 异常:属性“name”为私有属性,只能在类“Animal”中访问。
}
}
let p = new Cat("Tom", 18);
console.log(p.name, p.age); // 异常:属性“name”为私有属性,只能在类“Animal”中访问。
readonly
仅读属性只能在 constructor 中被赋值,因为是相当于初始化
class Animal {
constructor(public readonly name: string, public age: number) {
this.name = name; // 仅读属性只能在constructor中被赋值,因为是相当于初始化
this.age = age;
}
changeName(name: string) {
this.name = name; // 异常:无法分配到 "name" ,因为它是只读属性。
}
}
class Cat extends Animal {
constructor(name: string, age: number) {
super(name, age);
}
}
let p = new Cat("Tom", 18);
p.changeName("Jerry");
实例方法
class Animal {
public eat: () => void; // 实例方法
constructor() {
this.eat = () => {
console.log("eat");
};
}
}
let an = new Animal();
an.eat();
类中原型属性、方法 + 访问器
原型属性 + 访问器
class Animal {
private _name: string = "Tom"; // 原型属性
get name() {
// 需要通过类的访问器,访问 原型上的属性
return this._name;
}
set name(newValue) {
this._name = newValue;
}
}
let an = new Animal();
console.log(an.name);
原型方法
class Animal {
say(message: string) {
console.log(message);
}
}
let an = new Animal();
an.say("hello");
类中静态属性、方法
静态属性、方法都是通过类名直接调用
,并且静态属性和静态方法是可以被子类所继承
的
class Animal {
static type = "哺乳动物"; // 静态属性
// 静态方法
static getName() {
return "动物类";
}
}
class Cat extends Animal {}
console.log(Animal.type);
console.log(Animal.getName());
console.log(Cat.type);
console.log(Cat.getName());
子类重写父类方法
要求必须和父类的方法类型一致,也就是说方法的入参与返回值的类型,需要兼容
父类方法的类型
class Animal {
static getType(ms: string) {
console.log("父");
}
say(ms: string): void {
console.log("父 say");
}
}
class Mouse extends Animal {
static getType() {
console.log("子");
}
say() {
console.log("子 say");
return 123;
}
}
let mouse = new Mouse();
mouse.say();
Mouse.getType();
类中 Super 属性
- 原型方法中的 super 指代父类的原型
- 静态方法中的 super 指代父类
- 构造函数中的 super 指代父类
class Animal2 {
static getType() {
console.log("父");
}
public eat: () => void;
constructor() {
this.eat = () => {
console.log("eat");
};
}
say(): void {
console.log("父 say");
}
}
class Mouse extends Animal2 {
static getType() {
console.log("子");
super.getType(); // super 指代父类
}
constructor() {
super(); // super 指代父类
}
say() {
console.log("子 say");
super.say(); // super 指代父类的原型
}
}
let mouse = new Mouse();
mouse.say(); // 依次打印:子 say、 父 say、
mouse.eat(); // 打印:子 say、 父 say、
Mouse.getType(); // 依次打印:子、 父
修饰符 + constructor(){}
构造函数中增加了 private 和 protected,表示父类不能被 new,此时使用场景并不是很多,通常多见于单例模式
单例模式
class Singleton {
static instance = new Singleton();
private constructor() {} // 默认不写 是public
static getInstance() {
return this.instance;
}
}
// 单例模式
let instance1 = Singleton.getInstance();
let instance2 = Singleton.getInstance();
console.log(instance1 === instance2); // true
抽象类 abstract
抽象类的特点:
- 由
abstract
修饰的类叫做抽象类,也可以修饰抽象方法
- 抽象方法不能在抽象类中实现,只能在抽象类的具体子类中实现,而且必须实现。
- 只有抽象类中可以有抽象方法,
- 抽象类中可以有普通方法,普通方法不需要被子类重写
- 抽象类不能被实例化,也就是不能 new,只能被继承
- 定义类型时 void 表示函数的返回值为空(不关心返回值类型,所有在定义函数时也不关心函数返回值类型)
abstract class Animal {
// 1
abstract speak(): void; // 3,
drink() {
// 4
console.log("drink");
}
}
class Cat extends Animal {
speak() {
// 2
console.log("猫叫");
}
}
class Dog extends Animal {
speak(): string {
// 6
console.log("汪叫");
return "wangwang";
}
}
new Animal(); // 5. 报异常:无法创建抽象类的实例
抽象类定义实例方法及原型方法
实例方法
abstract class Person {
abstract eat: () => void; // 定义实例方法
}
class Teacher extends Person {
eat: () => void; // 属性“eat” 初始化,且需要在构造函数中明确赋值。
constructor() {
super(); // 访问派生类的构造函数中的 this前,必须调用"super"。
this.eat = function () {
console.log("eat");
};
}
}
原型方法
abstract class Person {
abstract eat(): void; // 定义原型方法
}
class Teacher extends Person {
eat(): void {
// 非抽象类"Teacher"需要实现父类"Person”"的抽象成员"eat"。
console.log("eat");
}
}
TypeScript 学习笔记 — 类的基本用法(五)的更多相关文章
- Typescript 学习笔记五:类
中文网:https://www.tslang.cn/ 官网:http://www.typescriptlang.org/ 目录: Typescript 学习笔记一:介绍.安装.编译 Typescrip ...
- Typescript 学习笔记四:回忆ES5 中的类
中文网:https://www.tslang.cn/ 官网:http://www.typescriptlang.org/ 目录: Typescript 学习笔记一:介绍.安装.编译 Typescrip ...
- Typescript 学习笔记七:泛型
中文网:https://www.tslang.cn/ 官网:http://www.typescriptlang.org/ 目录: Typescript 学习笔记一:介绍.安装.编译 Typescrip ...
- Typescript 学习笔记六:接口
中文网:https://www.tslang.cn/ 官网:http://www.typescriptlang.org/ 目录: Typescript 学习笔记一:介绍.安装.编译 Typescrip ...
- Typescript 学习笔记二:数据类型
中文网:https://www.tslang.cn/ 官网:http://www.typescriptlang.org/ 目录: Typescript 学习笔记一:介绍.安装.编译 Typescrip ...
- Typescript 学习笔记三:函数
中文网:https://www.tslang.cn/ 官网:http://www.typescriptlang.org/ 目录: Typescript 学习笔记一:介绍.安装.编译 Typescrip ...
- Typescript 学习笔记一:介绍、安装、编译
前言 整理了一下 Typescript 的学习笔记,方便后期遗忘某个知识点的时候,快速回忆. 为了避免凌乱,用 gitbook 结合 marketdown 整理的. github地址是:ts-gitb ...
- TypeScript学习笔记(八):1.5版本之后的模块和命名空间
我之前有写过TS1.5版本之前的“模块”的笔记:TypeScript学习笔记(七):模块 但是TS这里的模块和在ECMAScript 2015里的模块(即JS原生支持了模块的概念)概率出现了混淆,所以 ...
- 触发器学习笔记(:new,:old用法)
触发器学习笔记(:new,:old用法) 触发器是数据库发生某个操作时自动运行的一类的程序 用于保持数据的完整性或记录数据库操作信息方面 触发器不能够被直接调用,只能够 ...
- 《python基础教程(第二版)》学习笔记 类和对象(第7章)
<python基础教程(第二版)>学习笔记 类和对象(第7章) 定义类class Person: def setName(self,name): self.name=n ...
随机推荐
- 解决PyQt5报错defaultServiceProvider::requestService(): no service found for..
简述 之前因为这个报错解决了很长时间,因为我之前一直是用 pip3 工具安装的 PyQt5 ,但是用 pip3 工具安装 PyQt5 后, 自己写的音乐播放器一直没有声音,而且还有不能调用 fcitx ...
- SSH(四)控制层、业务层、dao层类的创建以及applicationcontext.xml和struts.xml配置
ssh框架的运作方式就是页面请求控制层,控制层调用dao层的方法,dao层完成对数据的操作的一个过程. 现在我们初步简单编写各层的class. action控制层: ActionSupport:实现了 ...
- 初次邂逅 EasyExcel
前言 由于工作原因,有这种需求,就是把数据库中的数据导出成 Excel 表格,同时,也得支持人家用 Excel 表格导入数据到数据库.当前项目也是在用 EasyExcel,所以我不得不学啦! 以前学习 ...
- 【Day02】Spring Cloud组件的使用--Nacos配置中心、sentinel流量控制、服务网关Gateway、RocketMQ、服务调用链路(Sleuth、zipkin)
今日内容 一.配置中心 1.遗留问题 yml配置,每一次都需要重启项目 需要不重启项目拿到更新的结果 引出:配置中心 选择:Spring Cloud Config组件 / Alibaba的Nacos( ...
- webpack :There are multiple modules with names that only differ in casing
1, webpack版本3.6.0 2. 报warning文件为 node_modules 下面webpack 里的hot.js和dev-server.js 3. 没有出现模块名混用大小写 解决方法: ...
- Kubernetes(k8s)存储管理之数据卷volumes(一):volumes的引入和emptyDir数据卷
目录 一.系统环境 二.前言 三.Docker数据卷volumes 四.Kubernetes 数据卷volumes 4.1 有状态容器和无状态容器 4.2 Kubernetes 数据卷volumes解 ...
- python循环结构之for循环
在python中,for循环是应用非常广的循环语句,遍历字典.遍历列表等等... # for语句结构 for 遍历 in 序列: 执行语句 遍历字典 lipsticks = {"Chanel ...
- 在nodejs中体验http/2
前言 2015年,HTTP/2 发布,直到2021年公司的项目才开始在实践中应用:自己对http2诸多特点的理解只存在于字面上,于是尝试在nodejs中实践一下,加深自己的理解. 多路复用 同域名下所 ...
- JavaScript:箭头函数:省略写法
之所以把箭头函数拎出来,是因为它不仅仅是声明函数的一种方式,它还是函数式编程的重要根基,它使得函数的使用更加的灵活,同时,它的语法,也相对于function声明的函数更加灵活和复杂. 箭头函数的省略写 ...
- 真实世界的人工智能应用落地——OpenAI篇 ⛵
作者:韩信子@ShowMeAI 深度学习实战系列:https://www.showmeai.tech/tutorials/42 本文地址:https://www.showmeai.tech/artic ...