关于控制器命令或任务命令中的执行执行()的面试问题

发布于 2024-11-06 07:17:58 字数 206 浏览 0 评论 0原文

在我最近参加的一次采访中,有人问了我一个问题。如下所示:

在控制器命令中,我们有一个名为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沫尐诺 2024-11-13 07:17:58

嘿,它是继承,您实现controllercommand接口或扩展controllercommandImpl

在实现的超类的执行方法中,它们调用performExecute

因此,当您调用控制器命令的执行方法时,该调用将转到超类的执行,并从中调用基类的performExecute。

Hey its the inheritence, you implement controllercommand interface or extend controllercommandImpl.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文