2019年3月5日

租赁车辆(多车)程序

摘要: 1 package carsRental; 2 /** 3 * 抽象类,机动车类 4 * @author Administrator 5 * 6 */ 7 public abstract class MotoVehicle { 8 //不用private,protected直接调用 9 protected String no; 10 prote... 阅读全文

posted @ 2019-03-05 14:26 SUN99 阅读(433) 评论(0) 推荐(0) 编辑

考试答案对应

摘要: 完成考题类(Question),单选题(SingleChoice)和多选题(MoreChoice)是其子类。要求:1.Question包含题干属性(text),选项:String[] optionsQuestion 包含检测标准答案的方法 boolean check(char[] answers)参 阅读全文

posted @ 2019-03-05 14:23 SUN99 阅读(618) 评论(0) 推荐(0) 编辑

导航