Jump to content
  • 0

ООП. Как вызвать метод предка?


S ... (delete)
 Share

Question

MovingObject наследует св-ва и методы от Moving. У Moving есть метод Go(), а в MovingObject он перекрывается. Вопрос в том, как вызвать в MovingObject.Go() метод родителя.

Вот что пришло в голову

 <script type="text/javascript">
function Moving()
{
this.x = 0;
this.y = 0;
}

Moving.prototype.Go = function()
{
/* Код */
}

function MovingObject()
{
this.z = 0;
}


MovingObject.prototype = new Moving;

MovingObject.prototype._Moving_Go = Moving.prototype.Go; //Сохраняем метод предка

MovingObject.prototype.Go = function()
{
this._Moving_Go(); //Вызываем метод предка
/* Код */
}
</script>

Может есть решение получше?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy