【例子介绍】Java点菜系统
小生自己写的Java的点菜系统,能实现基本的预览,点菜,计价功能。
【相关图片】
【源码结构】
文件清单
└── Menu-System
├── build
│ ├── built-jar.properties
│ ├── classes
│ │ ├── MainPart
│ │ │ ├── MenuSystem$LeftPanel$1.class
│ │ │ ├── MenuSystem$LeftPanel$2.class
│ │ │ ├── MenuSystem$LeftPanel$3.class
│ │ │ ├── MenuSystem$LeftPanel$4$1.class
│ │ │ ├── MenuSystem$LeftPanel$4.class
│ │ │ ├── MenuSystem$LeftPanel$5.class
│ │ │ ├── MenuSystem$LeftPanel.class
│ │ │ ├── MenuSystem$RightPanel$1$1.class
│ │ │ ├── MenuSystem$RightPanel$1.class
│ │ │ ├── MenuSystem$RightPanel$2.class
│ │ │ ├── MenuSystem$RightPanel.class
│ │ │ ├── MenuSystem$TopBar.class
│ │ │ └── MenuSystem.class
│ │ └── menu
│ │ └── system
│ │ └── TestMenuSystem.class
│ ├── empty
│ └── generated-sources
│ └── ap-source-output
├── build.xml
├── dist
│ ├── Menu-System.jar
│ └── README.TXT
├── manifest.mf
├── nbproject
│ ├── build-impl.xml
│ ├── genfiles.properties
│ ├── private
│ │ ├── private.properties
│ │ └── private.xml
│ ├── project.properties
│ └── project.xml
├── src
│ ├── MainPart
│ │ └── MenuSystem.java
│ └── menu
│ └── system
│ └── TestMenuSystem.java
├── 信息
│ ├── 学生A.txt
│ ├── 学生B.txt
│ ├── 学生C.txt
│ ├── 学生D.txt
│ ├── 学生E.txt
│ ├── 学生F.txt
│ └── 学生G.txt
├── 学生选择
│ ├── 2009级C专业四班
│ │ ├── 学生F.txt
│ │ └── 学生G.txt
│ ├── 2010级A专业一班
│ │ ├── 学生A.txt
│ │ └── 学生B.txt
│ └── 2011级B专业二班
│ ├── 学生C.txt
│ ├── 学生D.txt
│ └── 学生E.txt
└── 成绩输出.txt
21 directories, 42 files
评论