let hd={ name:"后盾人" }; let User={ name:"ych", show(){ console.log(this.name); } } Object.setPrototypeOf(hd,User); hd.show();//后盾人