Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须使用 MVC 在 QT 中创建一个应用程序。那么,如何在 qt 应用程序中维护 MVC 模式。如何在 QT 中创建控制器?
有什么帮助吗?
MVC 表示分离的模型-视图-控制层。如果可以的话,将每个图层类放入自己的库中。
控制器层是模型层和视图层之间的粘合剂。以最简单的形式,它只是连接它们的信号和插槽。更复杂的控制器正在使用 lambda 函数并在他们的方法中做更多的事情。