我为我的RPG游戏创建了一个类,我想问用户角色的名称,我该怎么做?
Pitch是我创建的基本名称,但我希望将Pitch替换为用户提供的名称
class Personnage {
constructor(nom, sante, force) {
this.nom = nom;
this.sante = sante;
this.force = force;
this.xp = 0;
}
const principal = new Personnage("Pitch", 150, 25);
感谢您的回答! (对不起,我的英文啊哈)
答案 0 :(得分:-1)
请考虑使用此版本来实现您的尝试。
class Personnage {
var _nom;
var _force;
var _xp;
constructor(nom, sante, force) {
_nom = nom;
_sante = sante;
_force = force;
_xp = 0;
}
const principal = new Personnage(some_user_variable, 150, 25);
尽管不清楚您要做什么。这有帮助吗?