欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

前端JavaScript中的class类

程序员文章站 2022-06-10 14:45:23
目录1、类类是用于创建对象的模板。javascript中生成对象实例的方法是通过构造函数,这跟主流面向对象语言(java,c# )写法上差异较大,如下:function point(x, y) {...

1、类

类是用于创建对象的模板。javascript中生成对象实例的方法是通过构造函数,这跟主流面向对象语言(javac# )写法上差异较大,如下:

function point(x, y) {
  this.x = x;
  this.y = y;
}

point.prototype.tostring = function () {
  return '(' + this.x + ', ' + this.y + ')';
};

var p = new point(1, 1);

es6 提供了更接近java语言的写法,引入了 class(类)这个概念,作为对象的模板。通过class关键字,可以定义类。

如下:constructor()是构造方法,而this代表实例对象:

class point {
  constructor(x, y) {
    this.x = x;
    this.y = y;
  }

  tostring() {
    return '(' + this.x + ', ' + this.y + ')';
  }
}

类的数据类型就是函数,它本身就是指向函数的构造函数:

// es5 函数声明
function point() {
 //...
}

// es6 类声明
class point {
  //....
  constructor() {
  }
}
typeof point // "function"
point === point.prototype.constructor // true

在类里面定义的方法是挂到point.prototype,所以类只是提供了语法糖,本质还是原型链调用。

class point {
  constructor(x, y) {
    this.x = x;
    this.y = y;
  }

  tostring() {
    return '(' + this.x + ', ' + this.y + ')';
  }
}

point.prototype = {
  //....
  tostring()
}
var p = new point(1, 1);
p.tostring() // (1,1)

类的另一种定义方式类表达式

// 未命名/匿名类
let point = class {
  constructor(x, y) {
    this.x = x;
    this.y = y;
  }
};
point.name // point

函数声明和类声明有个重要区别,函数声明会提升,类声明不会提升。

> let p = new point(); // 被提升不会报错
> function point() {}
> 
> let p = new point(); // 报错,referenceerror
> class point {}
>

1.1 constructor()

constructor()方法是类的默认方法,new生成实例对象时会自动调用该方法。

一个类必须有constructor()方法,如果没有显式定义,引擎会默认添加一个空的constructor()

constructor()方法默认返回实例对象(即this)。

class point {
}

// 自动添加
class point {
  constructor() {}
}

1.2 getter和setter

es5 一样,在类的内部可以使用getset关键字,对某个属性设置存值函数和取值函数,拦截该属性的存取行为。

class user {
  constructor(name) {
    this.name = name;
  }

  get name() {
    return this.name;
  }

  set name(value) {
    this.name = value;
  }
}

1.3 this

类的方法内部的this,它默认指向类的实例,在调用存在this的方法时,需要使用 obj.method()方式,否则会报错。

class user {
  constructor(name) {
    this.name = name;
  }
  printname(){
    console.log('name is ' + this.name)
  }
}
const user = new user('jack')
user.printname() // name is jack
const { printname } = user;
printname()     // 报错 cannot read properties of undefined (reading 'name')

如果要单独调用又不报错,一种方法可以在构造方法里调用bind(this)

class user {
  constructor(name) {
    this.name = name;
    this.printname = this.printname.bind(this);
  }
  printname(){
    console.log('name is ' + this.name)
  }
}
const user = new user('jack')
const { printname } = user;
printname()     // name is jack

bind(this) 会创建一个新函数,并将传入的this作为该函数在调用时上下文指向。

另外可以使用箭头函数,因为箭头函数内部的this总是指向定义时所在的对象。

class user {
  constructor(name) {
    this.name = name;
  }
  printname = () => {
    console.log('name is ' + this.name)
  }
}
const user = new user('jack')
const { printname } = user;
printname()     // name is jack

1.4 静态属性

静态属性指的是类本身的属性,而不是定义在实例对象this上的属性。

class user {
}

user.prop = 1;
user.prop // 1

1.5 静态方法

可以在类里面定义静态方法,该方法不会被对象实例继承,而是直接通过类来调用。

静态方法里使用this是指向类。

class utils {
  static printinfo() {
     this.info();
  }
  static info() {
     console.log('hello');
  }
}
utils.printinfo() // hello

关于方法的调用范围限制,比如:私有公有,es6暂时没有提供,一般是通过约定,比如:在方法前面加下划线_print()表示私有方法。

2、继承

java中通过extends实现类的继承。es6中类也可以通过extends实现继承。

继承时,子类必须在constructor方法中调用super方法,否则新建实例时会报错。

class point3d extends point {
  constructor(x, y, z) {
    super(x, y); // 调用父类的constructor(x, y)
    this.z = z;
  }

  tostring() {
    return super.tostring() + '  ' + this.z ; // 调用父类的tostring()
  }
}

父类的静态方法,也会被子类继承

class parent {
  static info() {
    console.log('hello world');
  }
}

class child extends parent {
}

child.info()  // hello world

2.1 super关键字

在子类的构造函数必须执行一次super函数,它代表了父类的构造函数。

class parent {}

class child extends parent {
  constructor() {
    super();
  }
}

在子类普通方法中通过super调用父类的方法时,方法内部的this指向当前的子类实例。

class parent {
  constructor() {
    this.x = 1;
    this.y = 10
  }
  printparent() {
    console.log(this.y);
  }
  print() {
    console.log(this.x);
  }
}

class child extends parent {
  constructor() {
    super();
    this.x = 2;
  }
  m() {
    super.print();
  }
}

let c = new child();
c.printparent() // 10
c.m() // 2

2.2 _proto_和prototype

初学javascript时, _proto_prototype 很容易混淆。首先我们知道每个js对象都会对应一个原型对象,并从原型对象继承属性和方法。

  • prototype 一些内置对象和函数的属性,它是一个指针,指向一个对象,这个对象的用途就是包含所有实例共享的属性和方法(我们把这个对象叫做原型对象)。
  • _proto_ 每个对象都有这个属性,一般指向对应的构造函数的prototype属性。

下图是一些拥有prototype内置对象:

前端JavaScript中的class类

根据上面描述,看下面代码

var obj = {} // 等同于 var obj = new object()

// obj.__proto__指向object构造函数的prototype
obj.__proto__ === object.prototype // true 

// obj.tostring 调用方法从object.prototype继承
obj.tostring === obj.__proto__.tostring // true

// 数组
var arr = []
arr.__proto__ === array.prototype // true

对于function对象,声明的每个function同时拥有prototype__proto__属性,创建的对象属性__proto__指向函数prototype,函数的__proto__又指向内置函数对象(function)的prototype

function foo(){}
var f = new foo();
f.__proto__ === foo.prototype // true
foo.__proto__ === function.prototype // true

2.3 继承中的__proto__

类作为构造函数的语法糖,也会同时有prototype属性和__proto__属性,因此同时存在两条继承链。

  • 子类的__proto__属性,表示构造函数的继承,总是指向父类。
  • 子类prototype属性的__proto__属性,表示方法的继承,总是指向父类的prototype属性。
class parent {
}

class child extends parent {
}

child.__proto__ === parent // true
child.prototype.__proto__ === parent.prototype // true

2.4 继承实例中的__proto__

子类实例的__proto__属性,指向子类构造方法的prototype

子类实例的__proto__属性的__proto__属性,指向父类实例的__proto__属性。也就是说,子类的原型的原型,是父类的原型。

class parent {
}

class child extends parent {
}

var p = new parent();
var c = new child();

c.__proto__ === p.__proto__ // false
c.__proto__ === child.prototype // true
c.__proto__.__proto__ === p.__proto__ // true

3、小结

到此这篇关于前端javascript中的class类的文章就介绍到这了,更多相关javascript中的class内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: JavaScript class