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.
GUI(如 Qt 应用程序)中的 MainWindow 类通常非常大,包括所有的菜单、工具栏、中央小部件和其他小部件,以及与各种事件相对应的大量成员函数和许多其他成员便利函数来做这个或那个.
有什么好的策略来简化课程吗?
非常感谢!
杰登
与分解任何大型组件的方式相同:
将功能和职责抽象(分解)为子组件;重复直到达到合适的粒度级别。
没有任何具体细节,很难更准确。