关于控制器命令或任务命令中的执行执行()的面试问题
在我最近参加的一次采访中,有人问了我一个问题。如下所示:
在控制器命令中,我们有一个名为 PerformExecute() 的方法。但是每当我们想从任何其他控制器命令执行该控制器命令时,我们只需调用
controllerCmdObj.execute();
为什么会这样呢?
有人可以回答这个问题吗?
In a recent interview which i attended i was asked a question. It is as follows:
In a controller command we have a method named performExecute().But whenever we want to execute the controller command from any other controller command we will just call
controllerCmdObj.execute();
Why it is so?
Can anybody please answer this question?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嘿,它是继承,您实现
controllercommand
接口或扩展controllercommandImpl
。在实现的超类的执行方法中,它们调用
performExecute
。因此,当您调用控制器命令的执行方法时,该调用将转到超类的执行,并从中调用基类的performExecute。
Hey its the inheritence, you implement
controllercommand
interface or extendcontrollercommandImpl
.Inside the execute method of implemented super class they call
performExecute
.So when you call your controller command's execute method the call goes to the execute of super class and from withing that the base class's
performExecute
gets called.