gpt4 book ai didi

javascript - 在 ES2015 中实现简单的属性继承?

转载 作者:行者123 更新时间:2023-11-30 00:06:17 24 4
gpt4 key购买 nike

注意:这不是重复的。下面链接的问题只是询问类变量,而不是专门询问允许继承的解决方法。我将该问题的答案应用于潜在的继承解决方案,但没有成功。

我需要做的:基本属性覆盖:

class ProductA {
weight: 5,
height: 10,
price: 7
}

class ProductB extends ProductA {
height: 12
}

class ProductC extends ProductA {
price: 12,
weight: 2
}

class ProductC2 extends ProductC {
height: 5
}

我们不能用 ES2015 做到这一点???

根据 this question ,属性在 ES2015 中不受支持。这些答案推荐:

使用构造函数?

class ProductA {
constructor(){
this.weight = 5;
this.height = 10;
this.price = 7;
}
}

// and then...?

class ProductB extends ProductA {
constructor(){
super()
this.height = 12;
}
}

这可能看起来有效,直到你想在 ProductA 的构造函数中添加 this.initialize() 调用,例如......有一个 ES2015 规则说你必须调用 super () 之前。对于 ProductB,您必须在覆盖属性之前调用 super(),这将是错误的顺序(考虑到您的 initialize() 逻辑使用了这些属性)。


使用 getter 将属性映射到 Class 对象?

class ProductA {
get weight() {
return this.constructor.weight;
}
}

ProductA.weight = 5;
// also for height, price, and all other properties...?

令我惊讶的是,它竟然能起作用:当您扩展类时,getter 会以某种方式映射回基类,除非它自己的构造函数具有该属性。这几乎就像 ProductB 的原型(prototype)是 ProductA。

这里的大问题是允许实例级覆盖(this.weight = 6)。您必须添加一个 setter 方法,并修改 getter 以查看 this.weight 或回退到 this.constructor.weight。这基本上是重新实现简单的继承。为什么?!


This page有更好的解决方案:

class ProductA {
constructor(options) {
Object.assign(this, {
weight: 5,
height: 10,
price: 7
}, options);
}
}

class ProductB extends ProductA {
constructor(options){
super(Object.assign({
height: 12
}, options));
}
}

仍然存在必须使用“super()”的问题,这会阻止我在运行初始化逻辑之前覆盖属性。

我能够在 ES5 中非常轻松地做到这一点。必须有更好的实现或解决方法吗?

最佳答案

对于常量属性,prototype 可用于所有 类。父类构造函数中的 this 赋值将覆盖子类中的 prototype 赋值。

class ProductA { ... }

Object.assign(ProductA.prototype, {
weight: 5,
height: 10,
price: 7
});

class ProductB extends ProductA {
constructor(){
super();
...
}
})

Object.assign(ProductB.prototype, {
height: 12
});

这适用于 ES5,这适用于 ES6。它仍然是 JS,尽管有限制,类仍然是美化的构造函数。

如果在父类中使用 initialize(),ES.Next 类字段将起作用的假设是错误的。类字段不违反规则,只是 ES6 类的糖语法。它们被添加为 this 属性 after super() call .如评论中所述,请勿使用 initialize()

关于javascript - 在 ES2015 中实现简单的属性继承?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38389735/

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