我有两个班,帐户和角色。一个帐户可以有多个字符,但一个字符只属于一个帐户。
class Account {
constructor(){
this.characters = // Array of chars
this.selectedChar = // a character object
}
}
class Character {
constructor(account){
this.account = account;
}
}
现在我有了我认为的参考周期。该帐户将引用一个字符,该字符将具有该帐户的引用。现在我的问题是这是否会导致性能/内存问题,如果是这样,我是否可以采取另一种方式。
由于