admin管理员组文章数量:1345447
In the new ES6 Class syntax it is not possible to do
class Person {
this.type = 'person';
But if I define the property inside the contructor it works:
class Person {
constructor(name) { //class constructor
this.name = name;
this.type = 'person';
}
I know the possibility to have properties outside methods is being discussed but as of today and what relates to the ES6 specs it is not possible.
Is my solution a correct way to define static properties for the Class (for semantic reasons I defined those properties inside the constructor but it seems to work inside other methods)? Is there a better way?
I was looking at the spec in Method Defenition and found no information about this.
In the new ES6 Class syntax it is not possible to do
class Person {
this.type = 'person';
But if I define the property inside the contructor it works:
class Person {
constructor(name) { //class constructor
this.name = name;
this.type = 'person';
}
I know the possibility to have properties outside methods is being discussed but as of today and what relates to the ES6 specs it is not possible.
Is my solution a correct way to define static properties for the Class (for semantic reasons I defined those properties inside the constructor but it seems to work inside other methods)? Is there a better way?
I was looking at the spec in Method Defenition and found no information about this.
Share Improve this question asked Jan 25, 2016 at 20:24 RikardRikard 7,80513 gold badges60 silver badges99 bronze badges 3-
Depends on how you want to access them. That implementation gives each instance a member named
type
but if you wanted statics more like how C# does them then you'd do something likePerson.type = 'person'
. Then it would only be attached to the class instead of the individual instances. – Mike Cluck Commented Jan 25, 2016 at 20:26 - @MikeC there are many usecases for such properties, I didn't have a specific in mind. If we extend it we can still use/change that property. My question in more in lines like: is this ok to do?, or is there a more correct way? that can be done from inside the Class. – Rikard Commented Jan 25, 2016 at 20:34
- 3 Then I'd say, yes, that's pletely fine. Although I wouldn't call those "static properties". They're "instance properties" or just properties. – Mike Cluck Commented Jan 25, 2016 at 20:37
2 Answers
Reset to default 10You can create static getter:
"use strict";
class Person {
static get type() {
return 'person'
}
}
console.log(Person.type) // 'person'
As already said, what you are doing is creating an instance property. Adding such properties in the constructor is what the constructor is there for. This hasn't changed with ES6.
本文标签: javascriptClass static propertiesStack Overflow
版权声明:本文标题:javascript - Class static properties - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743786981a2538861.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论