From f50334bc2714fdfb7fb4c6479d95ff2b60a2cede Mon Sep 17 00:00:00 2001 From: p5wft6kpg <2734174142@qq.com> Date: Fri, 31 Oct 2025 20:04:41 +0800 Subject: [PATCH] ADD file via upload --- Main.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Main.java diff --git a/Main.java b/Main.java new file mode 100644 index 0000000..b98647d --- /dev/null +++ b/Main.java @@ -0,0 +1,12 @@ +// 主入口类 +public class Main { + public static void main(String[] args) { + // 创建MVC组件 + StudentModel model = new StudentModel(); + StudentView view = new StudentView(); + StudentController controller = new StudentController(model, view); + + // 启动系统 + controller.start(); + } +} \ No newline at end of file