gpt4 book ai didi

javascript - javascript中的面向对象继承

转载 作者:行者123 更新时间:2023-11-29 16:13:17 26 4
gpt4 key购买 nike

<分区>

我正在研究在 JavaScript 中应用面向对象的方法。
我找到了使用继承的解决方案,我想知道是否有更好的方法以及如何包装我的类。

这就是我到目前为止所做的。

People = function (name) {
this.name = name
this.age = null;
};

Employee = function (name) {
People.call(this, name);
this.IdentificationCode = null;
this.salary = null;
}

Jonh = new Employee("Jonh Smith");
Jonh.age = 25;
Jonh.IdentificationCode = 35632;
Jonh.salary = 3500;

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