我有一个像这样的基础课:
class Something
{
constructor() {
this.something = 0;
}
increaseSomething(incr = 1) {
this.something += incr;
}
}
但是,现在我可以做new Something().something += 100
有没有办法将某些属性保留为protected
?我希望increaseSomething
成为我的公共制定者。
聚苯乙烯。我知道它可以用函数完成,但我想用ES6类来完成。