java.swing答答租车
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java.swing答答租车相关的知识,希望对你有一定的参考价值。
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、管理出租车辆的后台界面接口、实现。
以上是关于java.swing答答租车的主要内容,如果未能解决你的问题,请参考以下文章
Java练习 SDUT-3349_答答租车系统(面向对象综合练习)