gpt4 book ai didi

Javascript 类 Getter Setter

转载 作者:行者123 更新时间:2023-12-02 21:03:05 26 4
gpt4 key购买 nike

我尝试在带有 webpack 的 javascript 类中使用 getter setter

为什么.js

class why {
set setWhy(answer) {
this._answer = answer
}

get getWhy() {
return this._answer
}
}

export default why

index.js

import why from'./why.js'

const index = () => {
why.setWhy = 'i dont know'
console.log(why.getWhy)
}

但它返回未定义,为什么?

undefined result in console

最佳答案

您需要创建一个 Why 类的对象才能使上面的代码工作: WhyObject = new Why();

关于Javascript 类 Getter Setter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61290433/

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