2 Star 0 Fork 0

CS-IMIS-23/20172309_javaProgramming

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
POSTester.java 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
20172309 提交于 2018-10-06 10:47 . main函数实现类 POSTester
package second_term.sixth_chapter;
import java.io.IOException;
import java.util.Collections;
public class POSTester {
/**
* Creates and populates a Program of Study. Then saves it using serialization.
*/
public static void main(String[] args) throws IOException
{
ProgramOfStudy pos = new ProgramOfStudy();
pos.addCourse(new Course("CS", 101, "Introduction to Programming", "A-"));
pos.addCourse(new Course("ARCH", 305, "Building Analysis", "A"));
pos.addCourse(new Course("GER", 210, "Intermediate German"));
pos.addCourse(new Course("CS", 320, "Computer Architecture"));
pos.addCourse(new Course("THE", 201, "The Theatre Experience"));
Course arch = pos.find("CS", 320);
pos.addCourseAfter(arch, new Course("CS", 321, "Operating Systems"));
Course theatre = pos.find("THE", 201);
theatre.setGrade("A-");
Course german = pos.find("GER", 210);
pos.replace(german, new Course("FRE", 110, "Beginning French", "B+"));
System.out.println(pos);
pos.sort();
System.out.println(pos);
pos.save("ProgramOfStudy");
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/CS-IMIS-23/20172309_javaProgramming.git
git@gitee.com:CS-IMIS-23/20172309_javaProgramming.git
CS-IMIS-23
20172309_javaProgramming
20172309_javaProgramming
master

搜索帮助