关注JavaScript基础知识需要掌握

举报
龙哥手记 发表于 2022/03/02 11:26:18 2022/03/02
【摘要】 系列

说在前面

你好呀,我是程序员龙哥。从本系列开始会带着大家一起学习 JavaScript 这对于前端的同学可能再熟悉不过了,如果你是JS高手你可跳过基础篇,到主页进行高级篇的学习。好了,开淦!

首先看基础new的原理

使用new命令时,它后面的函数依次执行下面的步骤:

  1. 创建一个空对象,作为将要返回的实例对象。
  2. 将这个空对象的原型,指向构造函数的prototype属性。
  3. 将这个空对象赋值给函数内部的this关键字。
  4. 开始执行构造函数内部的代码。
  5. 如果构造函数内有返回值且为对象类型,则返回该对象,否则返回上面创建的实例对象。

// 构造函数
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) // 王五

介绍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();
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。