gpt4 book ai didi

Javascript 对象原型(prototype)和 Object.create 方法

转载 作者:行者123 更新时间:2023-11-30 07:59:36 24 4
gpt4 key购买 nike

<分区>

Person.prototypeObject.create(Person.prototype) 有什么区别?我可以使用它们中的每一个吗?

function Person(name) {
this.name = name;
}

Person.prototype.copy = function() {
return new this.constructor(this.name);
};

// define the Student class
function Student(name) {
Person.call(this, name);
}

// inherit Person
Student.prototype = Person.prototype;
//Student.prototype = Object.create(Person.prototype);

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com