Java怎么使用集合来实现一个客户信息管理系统

技术Java怎么使用集合来实现一个客户信息管理系统这篇文章主要为大家展示了“Java怎么使用集合来实现一个客户信息管理系统”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“Jav

贺盛德朱庇特朱庇特朱庇特阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹“Java卓别林,你是谁?你是谁?你是谁?你是谁?你是谁?你是谁?你是谁?你是谁?你是谁?你是谁",魏冄,阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金,我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊,你是说范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹“Java卓别林,你是谁?你是谁?你是谁?你是谁?你是谁?你是谁?你是谁?你是谁?你是谁?你是谁""菲兰达。

1 客户类

公共类客户[

私人密码子;

私有字符串姓名;

私人字符串性;

私有字符串;

privateStringcall(私人字符串调用):

privateStringemail(专用字符串电子邮件):

publicCustomers()

}

public customers(string id、Stringname、Stringsex、string string、Stringcall、Stringemail)>;

这。cid=cid

这个。名称=名称

这。性=性;

这。年龄=年龄;

这。呼叫=呼叫

此。电子邮件=电子邮件:

}

publicstringgetname()

返回姓名;

}

publicvoidsename(字符串名称)>;

这个。名称=名称

}

publicstringgetsex()

返回性;

}

pubsvoitsetsex(string sex )>;

这。性=性;

}

publicstringgetage()

返国;

}

publicvoidsetage(字符串)

这。年龄=年龄;

}

公众罢工(广告人)

g getCall() {
        return call;
    }
    public void setCall(String call) {
        this.call = call;
    }
    public String getEmail() {
        return email;
    }
    public void setEmail(String email){
        this.email = email;
    }
    public String getCid() {
        return cid;
    }
    public void setCid(String cid) {
        this.cid = cid;
    }
}

2 主界面

public class Customermanager {
    public static void main(String[] args)   {
        ArrayList<Customers> array = new ArrayList<Customers>();
        while (true) {
            System.out.println( "-----客户信息管理软件-----" );
            System.out.println( "1 添加客户" );
            System.out.println( "2 修改客户" );
            System.out.println( "3 删除客户" );
            System.out.println( "4 客户列表" );
            System.out.println( "5 退出" );
            System.out.println( "请选择1-5" );
            Scanner sc = new Scanner( System.in );
            String line = sc.nextLine();
            switch (line) {
                case "1":
                    //System.out.println( "1 添加客户" );
                    addCustomer( array );
                    break;
                case "2":
                    //System.out.println( "2 修改客户" );
                    modifyCustomer( array );
                    break;
                case "3":
                    //System.out.println( "3 删除客户" );
                    deleteCustomer( array );
                    break;
                case "4":
                    //System.out.println( "4 查看所有客户" );
                    findCustomer( array );
                    break;
                case "5":
                    System.out.print("确认是否退出(Y/N):");
                    String y = sc.nextLine();
                    if (y.equals( "Y" ))
                    {
                        System.exit( 0 );
                    }
            }
        }
    }

3 方法

(1)添加客户

public static void addCustomer(ArrayList<Customers> array ){
        Scanner sc = new Scanner( System.in );
        String cid;
        while (true){
            System.out.println("请输入客户编号");
            cid = sc.nextLine();
            boolean flag =isUsed( array,cid );
            if (flag){
                System.out.println("编号被占用,请重新输入");
            }else {
                break;
            }
        }
        System.out.println("请输入客户姓名");
        String name = sc.nextLine();
        System.out.println("请输入客户性别");
        String sex = sc.nextLine();
        System.out.println("请输入客户年龄");
        String age = sc.nextLine();
        System.out.println("请输入客户电话");
        String call = sc.nextLine();
        System.out.println("请输入客户邮箱");
        String email = sc.nextLine();
        Customers c = new Customers();
        c.setCid( cid );
        c.setName( name );
        c.setSex( sex );
        c.setAge( age );
        c.setCall( call );
        c.setEmail( email );
        array.add( c);
        System.out.println("添加成功");
    }

(2)判断编号是否被占用

 public static boolean isUsed(ArrayList<Customers>array ,String cid){
        boolean flag = false;
        for (int i = 0; i <array.size() ; i++) {
            Customers s = array.get( i );
            if (s.getCid().equals( cid )){
                flag = true;
                break;
            }
        }
        return flag;
    }

(3)修改客户信息

public static void modifyCustomer(ArrayList<Customers> array ){
        Scanner sc= new Scanner( System.in );
        System.out.println("请输入要修改的客户编号");
        String cid = sc.nextLine();
        System.out.println("请输入客户姓名");
        String name = sc.nextLine();
        System.out.println("请输入客户性别");
        String sex = sc.nextLine();
        System.out.println("请输入客户年龄");
        String age = sc.nextLine();
        System.out.println("请输入客户电话");
        String call = sc.nextLine();
        System.out.println("请输入客户邮箱");
        String adress = sc.nextLine();
        String email = sc.nextLine();
        Customers c = new Customers();
        c.setCid( cid );
        c.setName( name );
        c.setSex( sex );
        c.setAge( age );
        c.setCall( call );
        c.setEmail( email );
        for (int i = 0; i <array.size() ; i++) {
            Customers customers = array.get( i );
            if (customers.getCid().equals( cid )){
                array.set( i,c );
                break;
            }
        }
        System.out.println("修改客户信息成功");
    }

(4)删除客户

 public static void deleteCustomer(ArrayList<Customers> array ){
        Scanner sc = new Scanner( System.in );
        System.out.println("请输入要删除的客户编号(-1退出)");
        String cid = sc.nextLine();
        if (cid.equals( "-1" )){
            return;
        }
            int index = -1;
            for (int i = 0; i < array.size(); i++) {
                Customers s = array.get( i );
                if (s.getCid().equals( cid )) {
                    index = i;
                    break;
                }
            }
            if (index == -1) {
                System.out.println( "该信息不存在,请重新输入" );
            } else {
                System.out.println("确认是否删除(Y/N):");
                String s = sc.nextLine();
                if (s.equals( "Y" )|s.equals( "y" )){
                    array.remove( index );
                    System.out.println( "删除成功" );
                }
        }
    }

(5)客户列表

 public static void findCustomer(ArrayList<Customers> array ){
        if (array.size()==0){
            System.out.println("无信息,请添加信息在再查询");
            return;//为了程序不再往下执行
        }
        System.out.println("编号\t姓名\t性别\t年龄\t\t电话\t\t邮箱");
        for (int i = 0; i <array.size() ; i++) {
            Customers s = array.get( i );
            System.out.println(s.getCid()+"\t\t"+s.getName()+"\t"+s.getSex()+"\t"+s.getAge()+"\t\t"+s.getCall()+"\t\t"+s.getEmail());
        }
    }

(6)退出

 System.out.print("确认是否退出(Y/N):");
                    String y = sc.nextLine();
                    if (y.equals( "Y" ))
                    {
                        System.exit( 0 );
                    }

4 问题总结

(1)字符串比较问题

在遇到输入“-1”退出时碰到了问题,当时想着怎么比较String类型和int类型的数据,后面知道直接用equals方法直接比较String类型数据就行。

(2)修改客户不成功

这是错误代码片

for (int i = 0; i <array.size() ; i++) {
            Customers customers = array.get( i );
            if (customers.getCid().equals( i )){
                array.set( i,customers );
                break;
            }

错误如下:
首先 if (customers.getCid().equals( ))这一步比较的是遍历后的集合与输入的cid是否相同,所以应该是与cid比较而不是i;其次, array.set( );这一步是修改指定索引处的元素,返回被修改的元素;这里是用上面存储新的客户信息的c来修改索引处元素,所以修改后的代码为

for (int i = 0; i <array.size() ; i++) {
            Customers customers = array.get( i );
            if (customers.getCid().equals( cid )){
                array.set( i,c );
                break;
            }

(3)get和set方法使用时的疑惑 (为什么这里用set那里用get?)

本题中录入数据时候多用set方法,输出数据时用get方法。那么具体的应用场景在什么地方?
set是写入数据,get是得到数据
将类的某些信息隐藏在类内部,不允许外部程序直接访问,而是通过该类提供的方法来实现对隐藏信息的操作和访问

成员变量private,提供对应的getXxx()/setXxx()方法

以上是“Java怎么使用集合来实现一个客户信息管理系统”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注行业资讯频道!

内容来源网络,如有侵权,联系删除,本文地址:https://www.230890.com/zhan/82723.html

(0)

相关推荐

  • python selenium菜鸟教程(seleniumpython自动化测试实战)

    技术Python + selenium 自动化测试框架是怎样的今天就跟大家聊聊有关Python + selenium 自动化测试框架是怎样的,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根

    攻略 2021年12月21日
  • 怎么实现Zynq-7000开发环境的搭建

    技术怎么实现Zynq-7000开发环境的搭建本篇文章给大家分享的是有关怎么实现Zynq-7000开发环境的搭建,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。

    攻略 2021年12月10日
  • rocketmq 报什么错要重推(rocketmq能存储多少个topic)

    技术RocketMQ架构上主要分为几个部分这篇文章主要介绍RocketMQ架构上主要分为几个部分,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!技术架构RocketMQ架构上主要分为四部分,如上图所

    攻略 2021年12月18日
  • 华夏文明的三大发源地,中国最早的历史发源于哪里

    技术华夏文明的三大发源地,中国最早的历史发源于哪里以下“中国”作现在中国国境线以内解,简单描绘一下考古学所勾勒出的图景华夏文明的三大发源地:1.从晚更新世之末到全新世之初,华北和长江中下游地区开始开始从狩猎采集向食物生产

    生活 2021年10月22日
  • 用Python处理100个表格的实例分析

    技术用Python处理100个表格的实例分析这期内容当中小编将会给大家带来有关用Python处理100个表格的实例分析,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。一个故事给动力学Py

    攻略 2021年10月28日
  • spring基于领域分析设计的架构规范

    技术spring基于领域分析设计的架构规范本篇内容主要讲解“spring基于领域分析设计的架构规范”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“spring基于领域分析设计的

    攻略 2021年11月16日