Jump to content
  • 0

Учу js, вопрос по prototype


uuu
 Share

Question

Запутался в прототипах, подскажите, как из метода, заданного через prototype можно обратиться к частному свойству, попробую объяснить на примере, что мне непонятно:


function Constr(){
var count = 7;
}
Constr.prototype.alertCount = function(){alert(count)};
var a = new Constr();
a.alertCount(); // не видит count

Если задать метод в самом конструкторе, то он может работать с этой переменной:


function Constr(){
var count = 7;
this.alertCount = function(){alert(count)};
}
var a = new Constr();
a.alertCount(); // 7

Я понимаю, что можно сделать count общедоступным через this и все будет работать, но интересует именно описанный выше момент.

Edited by uuu
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0


function Constr(){
this.count = 7;
}
Constr.prototype.alertCount = function(){alert(this.count)};
var a = new Constr();
a.alertCount();

В вашем же случае свойство count является приватным и потому доступно только в конструкторе.

Подробнее можете почитать вот тут http://learn.javascript.ru/internal-external-interface

Edited by wwt
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 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