day1:
完成的事:
1、完成主函数(与用户的交互过程)及主要接口。
TestDada:
/** * Created by xkfx on 2017/3/12. */ public class TestDada { public static void main(String[] args) { DadaImpl dada = new DadaImpl(); dada.sayHello(); // Here I say yes if (dada.getAnswer() == true) { dada.displayCars(); // Here I choose the cars and comfirm if (dada.getOrder() == "confirm") { dada.showBill(); // Here I comfirm the bill } else { dada.sayGoodbye(); } } else { dada.sayGoodbye(); } } }
Dada(interface):
/** * Created by xkfx on 2017/3/12. */ public interface Dada { void sayHello(); boolean getAnswer(); // 确认用户是否要租车 void displayCars(); // 显示可出租的车的类型等信息 String getOrder(); // 确认用户是否确认租车类型数量 void showBill(); // 显示账单 void sayGoodbye(); // 响应用户取消操作 }
明日计划:
1、实现展示车辆的界面。
2、管理出租车辆的后台界面接口、实现。
时间: 2024-10-23 21:07:20