概述
- MVP模式(
Model-View-Presenter
)是一种用于构建用户界面的架构模式,它是MVC
模式的一种变体。 - MVP模式将应用程序划分为三个部分:
Model
(模型)、View
(视图)和Presenter
(表示器)。
Model(模型)
- 模型是应用程序的数据和业务逻辑的表示。它负责处理数据的存储、检索和处理,以及实现应用程序的业务逻辑。
View(视图)
- 视图是用户界面的表示。它负责显示数据并向用户提供交互界面。
- 视图不包含业务逻辑,而只是将用户的操作传递给
Presenter
。
Presenter(表示器)
- 表示器是模型和视图之间的中介,负责处理用户界面的交互和业务逻辑。它从模型中获取数据,并将其传递给视图进行显示。
- 同时,它也接收来自视图的用户输入,并将其传递给模型进行处理。
适用
- MVP模式适用于需要解耦用户界面和业务逻辑的场景,特别是在构建GUI应用程序时,可以使用MVP模式来实现用户界面的复用和交互逻辑的复用。
比之MVC
- 职责分离
MVC
模式中,控制器(Controller
)负责接收用户输入并更新模型(Model
)和视图(View
),视图只负责显示数据,模型则负责保存数据和业务逻辑。MVP
模式中,表示器(Presenter
)负责接收用户输入并更新模型,视图只负责显示数据,而模型则完全独立,表示器直接与模型交互。
- 视图与模型的交互
- MVC模式中,视图可以直接访问模型并从模型中获取数据,视图和模型之间可以直接进行交互。
- MVP模式中,视图不直接访问模型,所有的交互都通过表示器进行,视图和模型完全解耦。
- 更新机制
- MVC模式中,模型通常会主动通知视图进行更新,而视图无法主动访问模型。
- MVP模式中,表示器会根据用户输入或模型的状态变化,决定何时更新视图,并直接通知视图进行更新。
实现
1 2 3 4 5 6 7 8 9 10 11 12 |
// Model class UserModel { private: std::string username; public: UserModel(const std::string& username) : username(username) {} std::string getUsername() const { return username; } }; |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
// View Interface class UserView { public: virtual void showUserName(const std::string& username) = 0; }; // Concrete View class ConsoleUserView : public UserView { public: void showUserName(const std::string& username) override { std::cout << "User name: " << username << std::endl; } }; |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
// Presenter class UserPresenter { private: UserModel userModel; UserView& userView; public: UserPresenter(const UserModel& userModel, UserView& userView) : userModel(userModel), userView(userView) {} void showUserName() { std::string username = userModel.getUsername(); userView.showUserName(username); } }; |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
int main() { // 创建Model和View对象 UserModel userModel("John Doe"); ConsoleUserView consoleUserView; // 创建Presenter对象,并绑定Model和View UserPresenter userPresenter(userModel, consoleUserView); // 使用Presenter来显示用户名称 userPresenter.showUserName(); return 0; } |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 创建型:工厂方法模式08/25
- ♥ 结构型:适配器模式09/19
- ♥ 行为型:迭代器模式09/07
- ♥ 设计模式:六大原则04/18
- ♥ 行为型:状态模式09/24
- ♥ 结构型:装饰器模式09/19