为了账号安全,请及时绑定邮箱和手机立即绑定

借书系统 使用ArrayList<String>记录图书条目 欢迎批评指正

标签:
Java
package com.imooc;

import java.util.*;

public class HelloWorld {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        HelloWorld hello = new HelloWorld();
        hello.UserInterface();
    }

    public void UserInterface(){
        Scanner input = new Scanner(System.in);
        ArrayList<String> words = new ArrayList<String>();
        words.add("论语");
        words.add("高数");
        words.add("线性代数");
        words.add("数据结构");

        try{
            System.out.println("输入命令: 1——按照名称查找图书; 2——按照序号查找图书");

            switch(input.nextInt()){
                case 1:
                    this.searchBookByName(words);
                    break;
                case 2:
                    this.searchBookByNumber(words);
                    break;
                default:
                    break;
            }
        }catch(InputMismatchException e){
            System.out.println("命令输入错误!请按照提示输入数字命令!");
        }
        finally{
            input.close();
        }
    }

    public void searchBookByName(ArrayList<String> words){
        Scanner input = new Scanner(System.in);
        try{
            System.out.println("输入图书名称:");
            String inputName = input.next();
            if(words.contains(inputName)){
                System.out.println("book:" + inputName);
            }else{
                System.out.println("图书不存在");
            }
        }catch(InputMismatchException e){
            System.out.println("命令输入错误!请输入图书名称!");
        }
        finally{
            input.close();
        }   
    }
    public void searchBookByNumber(ArrayList<String> words){
        Scanner input = new Scanner(System.in);

        try{
            System.out.println("输入图书序号:");
            System.out.println("book:" + words.get(input.nextInt()));

        }catch(InputMismatchException e){
            System.out.println("命令输入错误!请根据提示输入数字命令");
        }catch(IndexOutOfBoundsException e){
            System.out.println("图书不存在");
        }
        finally{
            input.close();
        }
    }

}
点击查看更多内容
17人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消