关于原型链,要注意以下几个公式:

  • Function.__proto__ == Function.prototype == Object.__proto__
  • Function.prototype.__proto__ == Object.prototype
  • Object.prototype.__proto__ == null
  • function.__proto__ == Function.prototype
  • function.prototype.__proto__ == Object.prototype
  • prototype 是函数才有的属性,表示该函数的原型
  • __proto__ 是每个对象都有的属性,表示构造器的原型,即:contrusctor.prototype

    1、 阅读代码

    1. function Person(name) {
    2. this.name = name
    3. }
    4. var p2 = new Person('king');
    5. console.log(p2.__proto__)
    6. console.log(p2.__proto__.__proto__)
    7. console.log(p2.__proto__.__proto__.__proto__)
    8. console.log(p2.__proto__.__proto__.__proto__.__proto__)
    9. console.log(p2.__proto__.__proto__.__proto__.__proto__.__proto__)
    10. console.log(p2.constructor)
    11. console.log(p2.prototype)
    12. console.log(Person.constructor)
    13. console.log(Person.prototype)
    14. console.log(Person.prototype.constructor)
    15. console.log(Person.prototype.__proto__)
    16. console.log(Person.__proto__)
    17. console.log(Function.prototype.__proto__)
    18. console.log(Function.__proto__)
    19. console.log(Object.__proto__)
    20. console.log(Object.prototype.__proto__)

    2、 阅读代码

    ```javascript // a function Foo () { getName = function () { console.log(1); } return this; } // b Foo.getName = function () { console.log(2); } // c Foo.prototype.getName = function () { console.log(3); } // d var getName = function () { console.log(4); } // e function getName () { console.log(5); }

Foo.getName();
getName();
Foo().getName();
getName();
new Foo.getName();
new Foo().getName();
new new Foo().getName();

  1. <a name="L7Bsk"></a>
  2. ### 3、 阅读代码
  3. ```javascript
  4. var F = function() {};
  5. Object.prototype.a = function() {
  6. console.log('a');
  7. };
  8. Function.prototype.b = function() {
  9. console.log('b');
  10. }
  11. var f = new F();
  12. f.a();
  13. f.b();
  14. F.a();
  15. F.b()

4、 阅读代码

  1. function Foo(){
  2. Foo.a = function(){
  3. console.log(1);
  4. }
  5. this.a = function(){
  6. console.log(2)
  7. }
  8. }
  9. Foo.prototype.a = function(){
  10. console.log(3);
  11. }
  12. Foo.a = function(){
  13. console.log(4);
  14. }
  15. Foo.a();
  16. let obj = new Foo();
  17. obj.a();
  18. Foo.a();

5、 阅读代码

  1. function Dog() {
  2. this.name = 'puppy'
  3. }
  4. Dog.prototype.bark = () => {
  5. console.log('woof!woof!')
  6. }
  7. const dog = new Dog()
  8. console.log(Dog.prototype.constructor === Dog && dog.constructor === Dog && dog instanceof Dog)

6、 阅读代码

  1. var A = {n: 4399};
  2. var B = function(){this.n = 9999};
  3. var C = function(){var n = 8888};
  4. B.prototype = A;
  5. C.prototype = A;
  6. var b = new B();
  7. var c = new C();
  8. A.n++
  9. console.log(b.n);
  10. console.log(c.n);

7、 阅读代码

  1. function A(){
  2. }
  3. function B(a){
  4.   this.a = a;
  5. }
  6. function C(a){
  7.   if(a){
  8. this.a = a;
  9.   }
  10. }
  11. A.prototype.a = 1;
  12. B.prototype.a = 1;
  13. C.prototype.a = 1;
  14. console.log(new A().a);
  15. console.log(new B().a);
  16. console.log(new C(2).a);

8、 阅读代码

  1. function Parent() {
  2. this.a = 1;
  3. this.b = [1, 2, this.a];
  4. this.c = { demo: 5 };
  5. this.show = function () {
  6. console.log(this.a , this.b , this.c.demo );
  7. }
  8. }
  9. function Child() {
  10. this.a = 2;
  11. this.change = function () {
  12. this.b.push(this.a);
  13. this.a = this.b.length;
  14. this.c.demo = this.a++;
  15. }
  16. }
  17. Child.prototype = new Parent();
  18. var parent = new Parent();
  19. var child1 = new Child();
  20. var child2 = new Child();
  21. child1.a = 11;
  22. child2.a = 12;
  23. parent.show();
  24. child1.show();
  25. child2.show();
  26. child1.change();
  27. child2.change();
  28. parent.show();
  29. child1.show();
  30. child2.show();

9、 阅读代码

  1. function SuperType(){
  2. this.property = true;
  3. }
  4. SuperType.prototype.getSuperValue = function(){
  5. return this.property;
  6. };
  7. function SubType(){
  8. this.subproperty = false;
  9. }
  10. SubType.prototype = new SuperType();
  11. SubType.prototype.getSubValue = function (){
  12. return this.subproperty;
  13. };
  14. var instance = new SubType();
  15. console.log(instance.getSuperValue());

image.png