两个不同的子类是先后相继创造的(孪生兄弟),如何让他们共享一个父类(需要共享同一个随机值)现实是:因为先后创造,他们两个父类的产生的随机值是不同的。头疼。。。
2 回答
MYYA
TA贡献1868条经验 获得超4个赞
letnum=Math.random()classFarher{constructor(n){this.number=n;}}lets1=newFarher(num)lets2=newFarher(num)
元芳怎么了
TA贡献1798条经验 获得超7个赞
varfather=function(){this.number=Math.random();}varfather1=newfather;varson=function(){}son.prototype=father1;varsister=function(){}sister.prototype=father1;varson1=newson;varsister1=newsister;console.log(son1.number,sister1.number);
添加回答
举报
0/150
提交
取消