通过触发父方法来触发实例方法
通过调用父级方法来触发许多子级中的方法的最佳方法是什么?
例如,假设我有一个父对象 Foo,它有许多实例:BarX、BarY 等。
Foo = function(){
x = null;
y = null;
move = function(){
x += 1;
y += 1;
};
}
BarX = new Foo();
BarX.x = 50;
BarX.y = 50;
BarY = new Foo();
BarY.x = 200;
BarY.y = 200;
有没有简单的方法可以在所有实例中触发移动函数?我是否仅限于循环遍历实例并像这样触发函数,或者我可以以某种方式触发 Foo 中的函数并让它滴下来并触发所有扩展 Foo 的实例吗?
What is the best way to fire a method in many children by calling the parent's method?
For example, lets say I have a parent object Foo which has many instances: BarX, BarY, etc.
Foo = function(){
x = null;
y = null;
move = function(){
x += 1;
y += 1;
};
}
BarX = new Foo();
BarX.x = 50;
BarX.y = 50;
BarY = new Foo();
BarY.x = 200;
BarY.y = 200;
Is there any easy way to fire off the move function in all instances? Am I limited to looping through the instances and firing off the function like that or can I somehow fire the function in Foo and have it trickle down and fire off all instances who extend Foo?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,但你可以做得更聪明。在
Foo
上创建一个静态moveAll
函数。例子让事情变得更清楚。 这是小提琴。No. But you could be more clever about it. Make a static
moveAll
function onFoo
. Examples make things clearer. Here is the fiddle.