ES面对对象与new命令原理是啥
【摘要】 《JavaScript》系列,第二十篇希望你持续关注哦!
ES5面向对象
//面向对象封装
function Student(props){ // 构造函数 (构造函数内定于属性。尊从首字母大写的约定)
this.name = props.name || '匿名'; // 默认‘匿名’
this.grade = props.grade || 1;
}
Student.prototype.hello = function(){ // 在构造函数的原型上定义方法
console.log('你好,'+ this.name +'同学,你在'+ this.grade+'年级');
}
//使用
function createStudent(props) { // 对于new构造函数的封装,其优点:一是不需要new来调用,二是参数灵活
return new Student(props || {}) // 通过new创建构造函数,并传入参数/属性
}
var niming = createStudent();
niming.hello();
var xiaoming = createStudent({
name:'小明',
grade:2
});
xiaoming.hello();
//继承
function inherits(Child, Parent) { // 继承的封装方法 inherits(子类, 父类)
var F = function () {}; // 定义空方法F
F.prototype = Parent.prototype; //F原型指向父类原型
Child.prototype = new F(); // 子类原型指向 new F() 方法
Child.prototype.constructor = Child; // 修正子类原型上的构造函数为子类本身函数
}
function PrimaryStudent(props) { //定义子类 构造函数
Student.call(this, props); // 修正this指向
this.age = props.age || 8; //新增子类属性
}
inherits(PrimaryStudent, Student);//调用继承封装方法实现继承
PrimaryStudent.prototype.getAge = function(){ //对子类添加方法
console.log(this.name +'同学,你今年'+ this.age +'岁');
}
//使用继承后的
function createPrimaryStudent(props) { // 对于new构造函数的封装,其优点:一是不需要再new来调用,二是参数灵活
return new PrimaryStudent(props || {}) // 通过new创建构造函数,并传入参数/属性
}
var xiaohong = createPrimaryStudent({
name:'小红',
grade:3,
age:10
});
xiaohong.hello();
xiaohong.getAge();
ES6面向对象
//面向对象封装
class Student{ //定义类 (尊从首字母大写的约定)
constructor(props){ // 构造函数 (构造函数内定于属性)
this.name = props.name || '匿名'; // 默认'匿名'
this.grade = props.grade || 1;
}
hello(){ // 在构造函数的原型上定义方法
console.log(`你好,${this.name}同学,你在${this.grade}年级`);
}
}
//使用
function createStudent(props) { // 对于new构造函数的封装,其优点:一是不需要new来调用,二是参数灵活
return new Student(props || {}) // 通过new创建构造函数,并传入参数/属性
}
let niming = createStudent();
niming.hello();
let xiaoming = createStudent({
name:'小明',
grade:2
});
xiaoming.hello();
//继承
class PrimaryStudent extends Student { //class 子类 extends 父类
constructor(props) {
super(props); // 用super调用父类的构造方法实现属性继承
this.age = props.age || 8; //新增子类属性
}
getAge() { //对子类添加方法
console.log(`${this.name}同学,你今年${this.age}岁`);
}
}
//使用继承后的
function createPrimaryStudent(props) { // 对于new构造函数的封装,其优点:一是不需要再new来调用,二是参数灵活
return new PrimaryStudent(props || {}) // 通过new创建构造函数,并传入参数/属性
}
let xiaohong = createPrimaryStudent({
name:'小红',
grade:3,
age:10
});
xiaohong.hello();
xiaohong.getAge();
new命令原理
使用new命令时,它后面的函数依次执行下面的步骤:
- 创建一个空对象,作为将要返回的实例对象。
- 将这个空对象的原型,指向构造函数的prototype属性。
- 将这个空对象赋值给函数内部的this关键字。
- 开始执行构造函数内部的代码。
- 如果构造函数内有返回值且为对象类型,则返回该对象,否则返回上面创建的实例对象。
// 构造函数
function Person(name,age){
this.name = name
this.age = age
}
// 自定义_new
function _new() {
// 将 arguments 对象转为数组
var args = [].slice.call(arguments);
// 取出构造函数
var constructor = args.shift();
// 创建一个空对象,继承构造函数的 prototype 属性
var context = Object.create(constructor.prototype);
// 执行构造函数,并将context对象赋值给函数内部的this
var result = constructor.apply(context, args);
// 如果返回结果是对象,就直接返回,否则返回 context 对象
return (typeof result === 'object' && result != null) ? result : context;
}
// 自定义_new2
function _new2(/* 构造函数 */ constructor, /* 构造函数参数 */ params) {
// 创建一个空对象,并继承构造函数的 prototype 属性
var context = Object.create(constructor.prototype);
// 执行构造函数,并将context对象赋值给函数内部的this
var result = constructor.apply(context, params);
// 如果返回结果是对象,就直接返回,否则返回 context 对象
return (typeof result === 'object' && result != null) ? result : context;
// (当用户在构造函数内部自定义返回对象的话则使用该对象,否则返回context)
}
// 通过自定义_new 返回实例
var actor = _new(Person, '张三', 28);
console.log(actor.name) // 张三
// 通过自定义_new2 返回实例
var actor2 = _new2(Person, ['李四', 29]);
console.log(actor2.name) // 李四
// 通过new命令 返回实例
var actor3 = new Person('王五',30)
console.log(actor3.name) // 王五
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)