Java 视图到控制器观察者

发布于 2024-12-01 18:22:40 字数 363 浏览 1 评论 0原文

我需要帮助。我正在努力让我的观察者在 java 中工作。有人可以使用模型-视图-控制器架构向我解释如何从视图到控制器创建和观察者。

这是因为,如果我按下视图上的按钮,操作事件必须调用通知控制器该按钮被按下。

为此,我正在实现观察者以最小化类耦合。

我有一个控制器类、视图(使用 JFrame 的 Swing)和一个包含 main 方法的应用程序类。

我尝试实现它,以便 Controller 实现 Observer,而 View 扩展 Observable。

触发单击按钮的事件后,除了notifyObservers(“OBJECT”)之外的所有代码都会被调用。它消失在java库中的某个地方。

任何帮助将不胜感激。

I need help. I am struggling to get my Observers working in java. Can someone explain to me using MODEL-VIEW-CONTROLLER Architecture how to create and observer from View To Controller.

This is because if i press a button on the view the action event has to call notify the controller of that button being pressed.

For that I'm implementing observers to minimize class coupling.

I have a class Controller, View (Swing using JFrame), and an Application Class that holds the main method.

I tried implementing it so that Controller implements Observer and the View extends Observable.

After triggering the event of clicking the button all code except the notifyObservers("OBJECT") gets called. It disappears somewhere in the java library.

Any Help Will be much appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

甩你一脸翔 2024-12-08 18:22:40

模型应该扩展 observable,视图应该实现观察者(您希望视图依赖于模型)。在更改模型的状态后,您需要调用 setChanged 以强制通知观察者。

the model should extend observable and the view should implement observer (you want the view to depend on the model). you will need to call setChanged to after you change the state of the model to force the observers to be notified.

虐人心 2024-12-08 18:22:40

仔细检查您的控制器是否确实观察/监听(正确的)按钮实例。使用调试器并设置一些断点来检查 notifyObservers 是否被调用以及正在接收通知。

Double check, that your controller is really observing/listening to the (correct) button instance. Use a debugger and set some breakpoints to check whether notifyObservers is called and who is receiving the notification.

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