时间:2021-05-25
类的声明
1. 构造函数
function Animal() { this.name = 'name'}// 实例化new Animal()2. ES6 class
class Animal { constructor() { this.name = 'name' }}// 实例化new Animal()类的继承
1. 借助构造函数实现继承
原理:改变子类运行时的 this 指向,但是父类原型链上的属性并没有被继承,是不完全的继承
function Parent() { this.name = 'Parent'}Parent.prototype.say = function(){ console.log('hello')}function Child() { Parent.call(this) this.type = 'Child'}console.log(new Parent())console.log(new Child())2. 借助原型链实现继承
原理:原型链,但是在一个子类实例中改变了父类中的属性,其他实例中的该属性也会改变子,也是不完全的继承
function Parent() { this.name = 'Parent' this.arr = [1, 2, 3]}Parent.prototype.say = function(){ console.log('hello')}function Child() { this.type = 'Child'}Child.prototype = new Parent()let s1 = new Child()let s2 = new Child()s1.arr.push(4)console.log(s1.arr, s2.arr)console.log(new Parent())console.log(new Child())console.log(new Child().say())3. 构造函数 + 原型链
最佳实践
// 父类function Parent() { this.name = 'Parent' this.arr = [1, 2, 3]}Parent.prototype.say = function(){ console.log('hello')}// 子类function Child() { Parent.call(this) this.type = 'Child'}// 避免父级的构造函数执行两次,共用一个 constructor// 但是无法区分实例属于哪个构造函数// Child.prototype = Parent.prototype// 改进:创建一个中间对象,再修改子类的 constructorChild.prototype = Object.create(Parent.prototype)Child.prototype.constructor = Child// 实例化let s1 = new Child()let s2 = new Child()let s3 = new Parent()s1.arr.push(4)console.log(s1.arr, s2.arr) // [1, 2, 3, 4] [1, 2, 3]console.log(s2.constructor) // Childconsole.log(s3.constructor) // Parentconsole.log(new Parent())console.log(new Child())console.log(new Child().say())总结
以上所述是小编给大家介绍的JavaScript 面向对象(推荐)的相关知识,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
上几节讲了JavaScript面向对象之命名空间、javascript面向对象的JavaScript类与JavaScript面向对象的之私有成员和公开成员,大家
本文实例讲述了JavaScript面向对象。分享给大家供大家参考,具体如下:JavaScript面向对象this:this代指对象(pythonself)对象=
尽管面向对象JavaScript与其他语言相比之下存在差异,并由此引发了一些争论,但毋庸置疑,JavaScript具有强大的面向对象编程能力本文先从介绍面向对象
JavaScript是一门面向对象的语言。在JavaScript中有一句很经典的话,万物皆对象。既然是面向对象的,那就有面向对象的三大特征:封装、继承、多态。这
JavaScript,很少能让人想到它面向对象的特性,甚至有人说它不是面向对象的语言,因为它没有类。没错,JavaScript真的没有类,但JavaScript