代码拉取完成,页面将自动刷新
package chap6;
import java.io.IOException;
public class POSTester2 {
public static void main(String[] args) throws IOException {
ProgramOfStudy2 pos = new ProgramOfStudy2();
System.out.println("判断是否为空:"+pos.isEmpty());
System.out.println("列表长度:"+pos.size());
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"));
System.out.println("打印课表");
System.out.println(pos.toString());
Course contains = new Course("CS",320,"Computer Architecture");
System.out.println("判断是否有CS 320,\"Computer Architecture\"");
pos.contains(contains);
System.out.println("第一个列表元素:"+pos.first());
System.out.println("最后一个列表元素:"+pos.last());
pos.remove(contains);
System.out.println("去掉元素CS 320,\"Computer Architecture\"后的列表:"+"\n "+pos.toString());
pos.removeFirst();
pos.removeLast();
System.out.println("去掉头和尾之后的列表:"+"\n"+pos.toString());
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。