What is the MVC design pattern?

藏色散人
Release: 2023-04-05 21:00:01
Original
9340 people have browsed it


Model View Controllerreferred to asMVC, which isModel View Controller. The MVC design pattern specifies that an application consists of a data model, presentation information, and control information. The pattern requires that each pattern be separated into distinct objects.

MVC is more like an architectural pattern, but it is not suitable for complete applications. MVC is primarily concerned with the UI interaction layer of the application. You still need a business logic layer and probably some service layers and data access layers.

What is the MVC design pattern?

TheModel (Model)contains only pure application data and does not contain logic that describes how to present the data to the user.

View(View)Display the model data to the user. The view knows how to access the model's data, but it has no idea what that data means or what the user can do to manipulate it.

Controller(Controller)Exists between the view and the model. It listens for events triggered by views (or other external sources) and performs appropriate responses to these events. In most cases, the response is to call a method on the model. Since the view and model are connected through the notification mechanism, the results of this operation are automatically reflected in the view.

Let’s look at an example ofMVC design pattern.

class Student { private String rollNo; private String name; public String getRollNo() { return rollNo; } public void setRollNo(String rollNo) { this.rollNo = rollNo; } public String getName() { return name; } public void setName(String name) { this.name = name; } } class StudentView { public void printStudentDetails(String studentName, String studentRollNo) { System.out.println("学生: "); System.out.println("姓名: " + studentName); System.out.println("编号: " + studentRollNo); } } class StudentController { private Student model; private StudentView view; public StudentController(Student model, StudentView view) { this.model = model; this.view = view; } public void setStudentName(String name) { model.setName(name); } public String getStudentName() { return model.getName(); } public void setStudentRollNo(String rollNo) { model.setRollNo(rollNo); } public String getStudentRollNo() { return model.getRollNo(); } public void updateView() { view.printStudentDetails(model.getName(), model.getRollNo()); } } class MVCPattern { public static void main(String[] args) { Student model = retriveStudentFromDatabase(); StudentView view = new StudentView(); StudentController controller = new StudentController(model, view); controller.updateView(); controller.setStudentName("Vikram Sharma"); controller.updateView(); } private static Student retriveStudentFromDatabase() { Student student = new Student(); student.setName("Lokesh Sharma"); student.setRollNo("15UCS157"); return student; } }
Copy after login

Output:

学生: 姓名: Lokesh Sharma 编号: 15UCS157 学生: 姓名: Vikram Sharma 编号: 15UCS157
Copy after login

Advantages

• Multiple developers can work on models, controllers, and views simultaneously.

• MVC supports logical grouping of related operations on the controller. Views for specific models are also grouped together.

• A model can have multiple views.

Disadvantages

• Frame navigation can be complex because it introduces a new layer of abstraction and requires users to adapt to MVC's decomposition standards.

• Knowledge of multiple technologies becomes the norm. Developers using MVC need to be proficient in multiple technologies



The above is the detailed content of What is the MVC design pattern?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!