在Javascript中使用Prototype有什么好处?
我阅读了 crockford 关于私有成员的页面 http://javascript.crockford.com/private.html Javascript 并得到了一个可能有些相关的问题。开发人员为什么要使用 Prototype?
例如,
例如,我可以这样做
var Foo = new Object();
Foo.bar = function() { alert('Its a bar'); };
var x = Foo;
x.bar();
而不是
var Foo = function(){};
Foo.prototype.bar = function(){alert('Its a bar');};
var x = new Foo();
x.bar();
这两个实现都做同样的事情。一个与另一个有何不同?这会以任何方式影响继承吗?
I read crockford's page on private members http://javascript.crockford.com/private.html in Javascript and got a question which maybe somewhat related. Why should a developer use Prototype?
For example,
For example, I can do this
var Foo = new Object();
Foo.bar = function() { alert('Its a bar'); };
var x = Foo;
x.bar();
instead of
var Foo = function(){};
Foo.prototype.bar = function(){alert('Its a bar');};
var x = new Foo();
x.bar();
Both of these implementations do the same thing. How is one different from the other? Does this affect inheritance in any way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您使用原型模式时,仅存在添加到原型的属性的一个实例。
原型模式的缺点是无法访问私有成员。
When you use the prototype pattern, only one instance of attributes you add to the prototype exist.
The prototype pattern has the disadvantage of not being able to access private members.