续上章
测试队列小程序(这种方法的数组只能用一次,不是一个环形的队列):
1、 创建一个队列,给一个数组,给一个比较小的值,这样比较好测试数据 ArrayQueue
2、 创建一个key来接收用户的输入,并且创建Scanner对象获取用户的输入
3、 给出菜单让用户观看,并且输入数据进行测试
测试队列:
public static void main(String[] args) {
//创建一个队列
ArrayQueue queue = new ArrayQueue(3); //数值小比较好测试
char key = ' '; //接收用户输入
Scanner scanner = new Scanner(System.in);//扫描器:获取用户的输入
boolean loop = true;
//输出一个菜单
while(loop) {
System.out.println("s(show): 显示队列");
System.out.println("e(exit): 退出程序");
System.out.println("a(add): 添加数据到队列");
System.out.println("g(get): 从队列取出数据");
System.out.println("h(head): 查看队列头的数据");
key = scanner.next().charAt(0);//接收一个字符
switch (key) {
case 's':
queue.showQueue();
break;
case 'a':
System.out.println("输出一个数");
int value = scanner.nextInt();
queue.addQueue(value);
break;
case 'g': //取出数据
try {
int res = queue.getQueue();
System.out.printf("取出的数据是%d\n", res);
} catch (Exception e) {
// TODO: handle exception
System.out.println(e.getMessage());
}
break;
case 'h': //查看队列头的数据
try {
int res = queue.headQueue();
System.out.printf("队列头的数据是%d\n", res);
} catch (Exception e) {
// TODO: handle exception
System.out.println(e.getMessage());
}
break;
case 'e': //退出
scanner.close();//退出程序关闭Scanner,此处不关闭会出现异常信息
loop = false;
break;
default:
break;
}}
System.out.println("程序退出~~");}
效果如下图: