我有一个简化的基于MVC模式的程序,包含以下类:
学生
public 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;
}
}
StudentController
public 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());
}
}
StudentView
public class StudentView {
public void printStudentDetails(String studentName, String studentRollNo) {
System.out.println("Student: ");
System.out.println("Name: " + studentName);
System.out.println("Roll No: " + studentRollNo);
}
}
MVCPatternDemo
public class MVCPatternDemo {
public static void main(String[] args) {
// fetch student record based on his roll no from the database
Student model = retriveStudentFromDatabase();
// Create a view : to write student details on console
StudentView view = new StudentView();
StudentController controller = new StudentController(model, view);
controller.updateView();
// update model data
controller.setStudentName("John");
controller.updateView();
}
private static Student retriveStudentFromDatabase() {
Student student = new Student();
student.setName("Robert");
student.setRollNo("10");
return student;
}
}
现在,我需要在此计划中实施观察员模式以进行学校作业。我的主要问题是:在这种情况下主题是什么(我的猜测是StudentController,但我不确定)以及观察者是什么? (我的猜测是学生)
我并没有要求你编写我的程序来实现它,而是“推动”#39;朝着正确的方向会很好
答案 0 :(得分:2)
通常模型是主题(Observable)。这个想法是:您可以从不同的地方(控制器)更改模型,并通知所有其他的(订阅更改)。所以控制器是Observers。 在此特定示例中,您可以实现Observer模式以删除
controller.updateView();
代码中的行。它只会出现在侦听模型中并更新视图的侦听器中。