• <tfoot id='32Gpj'></tfoot>

      <small id='32Gpj'></small><noframes id='32Gpj'>

    1. <i id='32Gpj'><tr id='32Gpj'><dt id='32Gpj'><q id='32Gpj'><span id='32Gpj'><b id='32Gpj'><form id='32Gpj'><ins id='32Gpj'></ins><ul id='32Gpj'></ul><sub id='32Gpj'></sub></form><legend id='32Gpj'></legend><bdo id='32Gpj'><pre id='32Gpj'><center id='32Gpj'></center></pre></bdo></b><th id='32Gpj'></th></span></q></dt></tr></i><div id='32Gpj'><tfoot id='32Gpj'></tfoot><dl id='32Gpj'><fieldset id='32Gpj'></fieldset></dl></div>
        <legend id='32Gpj'><style id='32Gpj'><dir id='32Gpj'><q id='32Gpj'></q></dir></style></legend>
          <bdo id='32Gpj'></bdo><ul id='32Gpj'></ul>
      1. 详解JavaScript原型与原型链

        时间:2023-12-09

        <small id='uc4Ca'></small><noframes id='uc4Ca'>

        <tfoot id='uc4Ca'></tfoot>
        <i id='uc4Ca'><tr id='uc4Ca'><dt id='uc4Ca'><q id='uc4Ca'><span id='uc4Ca'><b id='uc4Ca'><form id='uc4Ca'><ins id='uc4Ca'></ins><ul id='uc4Ca'></ul><sub id='uc4Ca'></sub></form><legend id='uc4Ca'></legend><bdo id='uc4Ca'><pre id='uc4Ca'><center id='uc4Ca'></center></pre></bdo></b><th id='uc4Ca'></th></span></q></dt></tr></i><div id='uc4Ca'><tfoot id='uc4Ca'></tfoot><dl id='uc4Ca'><fieldset id='uc4Ca'></fieldset></dl></div>
            <legend id='uc4Ca'><style id='uc4Ca'><dir id='uc4Ca'><q id='uc4Ca'></q></dir></style></legend>
                <tbody id='uc4Ca'></tbody>

                  <bdo id='uc4Ca'></bdo><ul id='uc4Ca'></ul>

                  详解JavaScript原型与原型链

                  前置知识

                  在深入讲解JavaScript原型与原型链之前,需要了解以下概念:

                  • 对象
                  • 构造函数
                  • 实例
                  • 继承

                  原型

                  JavaScript中有一个对象,称为原型对象(prototype object),它指向一个JavaScript对象。每个JavaScript对象都有一个原型对象。

                  在对象定义时,可以通过Object.create()方法,创建一个新对象,并指定newObject的原型对象为someObject

                  var someObject = {
                    a: 1
                  };
                  
                  var newObject = Object.create(someObject);
                  

                  在上述代码中,newObject的原型对象为someObject

                  原型链

                  原型对象也可以有自己的原型。这种关系可以形成链状结构,被称作原型链(prototype chain)。

                  如果在一个对象中查找属性或方法时,找不到,它会沿着原型链一直向上查找,直到找到匹配的属性或方法或者查找到原型链的顶部,也就是Object.prototype为止,如果在整个原型链上都没找到,返回undefined。

                  构造函数

                  构造函数(constructor)是通过new关键字创建对象的特殊函数。构造函数可以用来创建特定类型的对象,相当于类的概念。

                  在构造函数中,可以使用this关键字给对象添加属性和方法,同时可以使用new关键字创建实例。

                  function Person(name) {
                    this.name = name;
                  }
                  
                  var p = new Person('张三');
                  

                  在上述代码中,Person可以看作是一个构造函数,可以通过new关键字创建实例。p就是一个实例。

                  实例属性与原型属性

                  构造函数中定义的属性和方法,每一个实例都有一个独立的副本,称之为实例属性或方法。而通过原型对象定义的属性和方法,则被所有实例共享,称之为原型属性或方法。

                  function Person(name) {
                    this.name = name;
                  }
                  
                  Person.prototype.sayHello = function() {
                    console.log('Hello');
                  };
                  
                  var p = new Person('张三');
                  var q = new Person('李四');
                  
                  p.sayHello(); // 输出 'Hello'
                  q.sayHello(); // 输出 'Hello'
                  

                  在上述代码中,sayHello方法是定义在Person的原型对象上的,所以被所有实例共享。

                  对象继承

                  要实现继承,需要使用到原型链。

                  在JavaScript中,每个对象都有一个原型对象,可以通过重写对象的原型对象来实现继承。我们可以通过构造函数中的Object.create方法,将父类的原型对象作为参数传入,生成一个新的对象,将这个新的对象作为子类的原型对象。

                  function Person(name) {
                    this.name = name;
                  }
                  
                  Person.prototype.sayHello = function() {
                    console.log('Hello');
                  };
                  
                  function Student(name, grade) {
                    Person.call(this, name);
                    this.grade = grade;
                  }
                  
                  Student.prototype = Object.create(Person.prototype);
                  Student.prototype.constructor = Student;
                  
                  Student.prototype.sayGoodbye = function() {
                    console.log('Goodbye');
                  };
                  
                  var s = new Student('张三', '大一');
                  
                  s.sayHello(); // 输出 'Hello'
                  s.sayGoodbye(); // 输出 'Goodbye'
                  

                  在上述代码中,Person是父类,Student是子类,Student通过Object.create(Person.prototype)来实现继承。

                  示例说明

                  示例1

                  现在有一个 Car 构造函数,它的原型对象上有一个 brand 属性,同时原型对象上还有一个 run 方法,可以让汽车行驶。现在我们创建了一个 Honda 的实例,用 console.log 依次输出它的属性和方法。

                  function Car() {}
                  
                  Car.prototype.brand = 'Honda';
                  
                  Car.prototype.run = function() {
                    console.log('The car is running');
                  };
                  
                  var honda = new Car();
                  
                  console.log(honda.brand); // 输出 'Honda'
                  honda.run(); // 输出 'The car is running'
                  

                  在上面的代码中,hondaCar 的一个实例,它继承了 Car 的原型对象上的 brand 属性和 run 方法。

                  示例2

                  现在有一个 Animal 构造函数,它拥有一个 type 属性。我们需要编写一个 Cat 构造函数,使它继承 Animal,同时为 Cat 添加一个 name 属性。创建两个 Cat 的实例,用 console.log 依次输出它们的属性。

                  function Animal() {}
                  
                  Animal.prototype.type = '动物';
                  
                  function Cat(name) {
                    this.name = name;
                  }
                  
                  Cat.prototype = Object.create(Animal.prototype);
                  Cat.prototype.constructor = Cat;
                  
                  var cat1 = new Cat('小白');
                  var cat2 = new Cat('小黑');
                  
                  console.log(cat1.type); // 输出 '动物'
                  console.log(cat1.name); // 输出 '小白'
                  
                  console.log(cat2.type); // 输出 '动物'
                  console.log(cat2.name); // 输出 '小黑'
                  

                  在上述代码中,Cat 通过 Object.create(Animal.prototype) 来实现继承 Animal 的原型对象,并重写它的构造函数。cat1cat2Cat 的两个实例,它们都拥有 Animaltype 属性和 Catname 属性。

                  上一篇:Js实现累加上漂浮动画示例 下一篇:才发现的超链接js导致网页中GIF动画停止的解决方法

                  相关文章

                    <tfoot id='M7e0F'></tfoot>
                    <i id='M7e0F'><tr id='M7e0F'><dt id='M7e0F'><q id='M7e0F'><span id='M7e0F'><b id='M7e0F'><form id='M7e0F'><ins id='M7e0F'></ins><ul id='M7e0F'></ul><sub id='M7e0F'></sub></form><legend id='M7e0F'></legend><bdo id='M7e0F'><pre id='M7e0F'><center id='M7e0F'></center></pre></bdo></b><th id='M7e0F'></th></span></q></dt></tr></i><div id='M7e0F'><tfoot id='M7e0F'></tfoot><dl id='M7e0F'><fieldset id='M7e0F'></fieldset></dl></div>
                      <legend id='M7e0F'><style id='M7e0F'><dir id='M7e0F'><q id='M7e0F'></q></dir></style></legend>

                      • <bdo id='M7e0F'></bdo><ul id='M7e0F'></ul>

                      <small id='M7e0F'></small><noframes id='M7e0F'>