欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

利用java實現(xiàn)一個客戶信息管理系統(tǒng)

 更新時間:2021年04月13日 12:09:10   作者:Redamancy•  
這篇文章主要給大家介紹了關于利用java實現(xiàn)一個客戶信息管理系統(tǒng)的相關資料,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧

用博客記錄我自學的點點滴滴

類圖:

Customer類:

public class Customer {
    /**
     * @name 客戶姓名
     * @sex 性別
     * @age 年齡
     * @phone 電話號碼
     * @email 郵箱
     */
    private String name;
    private String sex;
    private int age;
    private String phone;
    private String email;
    public Customer(){};
    public Customer(String name,String sex,int age,String phone,String email){
        this.name=name;
        this.sex=sex;
        this.age=age;
        this.phone=phone;
        this.email=email;
    }
    public String getName(){
        return this.name;
    }
    public void setName(String name){
        this.name=name;
    }
    public String getSex(){
        return this.sex;
    }
    public void setSex(String sex){
        this.sex=sex;
    }
    public String getPhone(){
        return phone;
    }
    public void setPhone(String phone){
        this.phone=phone;
    }
    public int getAge(){
        return this.age;
    }
    public void setAge(int age){
        this.age=age;
    }
    public String getEmail(){
        return this.email;
    }
    public void setEmail(String email){
        this.email=email;
    }
}

CustomerList 類:

public class CustomerList {
        private Customer [] customers;
        private static int total = 0;
    /**
     * 構造器初始化對象數(shù)組
     * @param totalCustmoers 客戶的總數(shù)
     */
    public CustomerList(int totalCustmoers){
        customers = new Customer[totalCustmoers];
    }

    /**
     * 增加客戶
     * @param customer 客戶
     * @return 返回是否添加成功
     */
        public boolean addCustomer(Customer customer){
            if(customer!=null&&total<customers.length)
            {customers[total]=customer;
                total++;
              return true;}
            else
            { return false;}
        }

    /**
     *替換
     * @param index 指定的客戶的編號
     * @param cust 修改的客戶
     * @return 返回是否修改成功
     */
        public boolean replaceCustomer(int index,Customer cust){
            if(index>=0 && index <total )
            {
                customers[index]=cust;return true;
            }
            else
            {
                return false;
            }
        }

    /**
     *刪除客戶
     * @param index 指定的客戶的編號
     * @return 返回是否刪除成功
     */
    public boolean deleteCustomer(int index){
        if(index<customers.length)
        {
            for(int i=index;i<total-1;i++)
            {
                customers[i]=customers[i+1];/**把數(shù)據(jù)往前挪動*/
            }
                customers[total-1]=null;
                total--;/**存儲的數(shù)據(jù)的總數(shù)-1*/
             return true;
        }
        else
        {
            return false;
        }
    }

    /**
     * 展現(xiàn)客戶的信息
     * @param index
     * @return 返回客戶
     */
    public Customer getCustomer(int index){
        if(index>=0 && index<total)
        {return customers[index];}
        else {
            return null;
        }
    }

    /**
     * 獲取所有的客戶
     * @return 客戶
     */
    public Customer[] getAllCustomers(){
            Customer [] cust = new Customer[total];/**新建一個數(shù)組來接收原數(shù)組的數(shù)據(jù)*/
            for(int i=0;i<total;i++){
                cust[i]=customers[i];
            }
            return cust;
    }

    /**
     * 得到客戶的總數(shù)
     * @return
     */
    public int getTotal(){
        return total;
    }
}

CustomerVIew類:

public class CustomerView {
    private CustomerList customerList = new CustomerList(10);

    /**
     * 顯示主菜單
     */
    public void enterMainMenu(){

        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("-----------------------------------------------------");
            Scanner input = new Scanner(System.in);
            int op = input.nextInt();
            switch(op)
            {
                case 1 :this.addNewCustomer();break;
                case 2 :this.modifyCustomer();break;
                case 3 :this.deleteCustomer();break;
                case 4 :this.listAllCustomers();break;
                case 5 :System.exit(0);break;
                default:
                    System.out.println("重新選擇功能");break;
            }
        }
    }


    /**
     * 增加客戶
     */
    private void addNewCustomer(){
        /**
         * 從鍵盤處接收客戶數(shù)據(jù)
         */
        System.out.println("-------------------添加客戶-------------------");
        Scanner input = new Scanner(System.in);
        System.out.println("姓名:");
        String name = input.next();
        System.out.println("性別:");
        String sex=input.next();
        System.out.println("年齡:");
        int age = input.nextInt();
        System.out.println("電話號碼:");
        String phone = input.next();
        System.out.println("電子郵箱:");
        String email = input.next();
        /**
         * 對客戶數(shù)據(jù)進行封裝
         */
        Customer person = new Customer(name,sex,age,phone,email);
        Boolean flag=customerList.addCustomer(person);
        if(flag)
        {
            System.out.println("-------------------添加成功-------------------");
        }
        else
        {
            System.out.println("-------------------添加失敗-------------------");
        }
    }

    /**
     * 修改客戶信息
     */
    private void modifyCustomer(){
        System.out.println("-------------------修改客戶-------------------");
        System.out.println("要修改的客戶id:");
        Scanner input = new Scanner(System.in);
        int number = input.nextInt();
            Customer customer = customerList.getCustomer(number);
        System.out.println("姓名:"+customer.getName());
        String name = CMUtility.readString(5,customer.getName());
        System.out.println("性別:"+customer.getSex());
        String sex = CMUtility.readString(5,customer.getSex());
        System.out.print("年齡(" + customer.getAge() + "):");
        int age = CMUtility.readInt(customer.getAge());
        System.out.print("電話(" + customer.getPhone() + "):");
        String phone = CMUtility.readString(13, customer.getPhone());
        System.out.print("郵箱(" + customer.getEmail() + "):");
        String email = CMUtility.readString(15, customer.getEmail());
        /**得到新的客戶數(shù)據(jù)*/
        customer = new Customer(name,sex,age,phone,email);
        Boolean flag = customerList.replaceCustomer(number,customer);
        if(flag)
        {
            System.out.println("-------------------修改成功-------------------");
        }
        else
        {
            System.out.println("-------------------修改失敗-------------------");
        }
    }

    /**
     * 刪除客戶
     */
    private void deleteCustomer(){
        System.out.println("-------------------刪除客戶-------------------");
        System.out.println("要刪除的客戶id:");
        Scanner input = new Scanner(System.in);
        int number = input.nextInt();
        while(true){
            System.out.println("退出(-1)");
        if(number>=0 && number<customerList.getTotal())
        {
            System.out.println("找到指定客戶");
        }
        else if(number==-1)
        {
            return;
        }
        else
        {
            System.out.println("輸入錯誤");break;
        }}
        System.out.println("是否確認刪除該客戶?Y/N");
        String ch = input.next();
        char o = ch.charAt(0);
        if(o=='Y')
        {
           boolean flag = customerList.deleteCustomer(number);
           if(flag){
               System.out.println("-------------------刪除成功-------------------");
           }
           else
           {
               System.out.println("-------------------刪除失敗-------------------");
           }
        }
        else{
            return;
    }
}
/**
 * 獲取客戶列表
 */
private void listAllCustomers(){
    Customer [] customer=customerList.getAllCustomers();
    if(customer.length==0)
    {
        System.out.println("沒有任何客戶數(shù)據(jù)");
    }
    else{
    for(int i=0;i< customer.length;i++)
    {
        System.out.println("姓名:"+customer[i].getName()+"\t"+"性別"+customer[i].getSex()+"\t"+"年齡:"+customer[i].getAge()+"\t"+"電話號碼:"+customer[i].getPhone()+"\t"+"電子郵箱:"+customer[i].getEmail()+"\t");
    }
}}

    public static void main(String[] args) {
        CustomerView co = new CustomerView();
        co.enterMainMenu();
    }
}

工具類:

public class CMUtility {
        private static Scanner scanner = new Scanner(System.in);
           public static String readString(int limit) {
            return readKeyBoard(limit, false);
        }
           public static int readInt(int defaultValue) {
            int n;
            for (; ; ) {
                String str = readKeyBoard(2, true);
                if (str.equals("")) {
                    return defaultValue;
                }
                try {
                    n = Integer.parseInt(str);
                    break;
                } catch (NumberFormatException e) {
                    System.out.print("數(shù)字輸入錯誤,請重新輸入:");
                }
            }
            return n;
        }

總結(jié)

到此這篇關于利用java實現(xiàn)一個客戶信息管理系統(tǒng)的文章就介紹到這了,更多相關java客戶信息管理系統(tǒng)內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!

相關文章

  • Java設計模式之中介者模式的實現(xiàn)方式

    Java設計模式之中介者模式的實現(xiàn)方式

    Java中介者模式是一種行為型設計模式,它通過一個中介者對象來協(xié)調(diào)多個對象之間的交互,降低對象之間的耦合度,提高系統(tǒng)的可維護性和可擴展性。本文將介紹該設計模式的原理、使用場景和實現(xiàn)方法
    2023-04-04
  • SpringBoot解決數(shù)據(jù)庫時間和返回時間格式不一致的問題

    SpringBoot解決數(shù)據(jù)庫時間和返回時間格式不一致的問題

    這篇文章主要介紹了SpringBoot解決數(shù)據(jù)庫時間和返回時間格式不一致的問題,文章通過代碼示例和圖文結(jié)合的方式講解的非常詳細,對大家的學習和工作有一定的幫助,需要的朋友可以參考下
    2024-03-03
  • Spring Boot項目中定制PropertyEditors方法

    Spring Boot項目中定制PropertyEditors方法

    在本篇文章里小編給大家分享的是一篇關于Spring Boot定制PropertyEditors的知識點內(nèi)容,有需要的朋友們可以參考學習下。
    2019-11-11
  • 解決JDK異常處理No appropriate protocol問題

    解決JDK異常處理No appropriate protocol問題

    這篇文章主要介紹了解決JDK異常處理No appropriate protocol問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2024-06-06
  • Mybatis整合達夢數(shù)據(jù)庫的完整步驟記錄

    Mybatis整合達夢數(shù)據(jù)庫的完整步驟記錄

    作為國產(chǎn)數(shù)據(jù)庫,達夢做的不錯,提供的遷移工具也相當不錯,下面這篇文章主要給大家介紹了關于Mybatis整合達夢數(shù)據(jù)庫的相關資料,文中通過實例代碼介紹的非常詳細,需要的朋友可以參考下
    2023-02-02
  • Java基礎第三篇 構造器與方法重載

    Java基礎第三篇 構造器與方法重載

    顯式初始化要求我們在寫程序時就確定初始值,這有時很不方便。我們可以使用構造器(constructor)來初始化對象。構造器可以初始化數(shù)據(jù)成員,還可以規(guī)定特定的操作。這些操作會在創(chuàng)建對象時自動執(zhí)行。下面文字將對該內(nèi)容做詳細介紹,需要的小伙伴請參考
    2021-09-09
  • 將下載好的jar包導入到本地maven倉庫中操作

    將下載好的jar包導入到本地maven倉庫中操作

    這篇文章主要介紹了將下載好的jar包導入到本地maven倉庫中操作,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-08-08
  • Java 訪問剪切板(復制,粘貼)的示例

    Java 訪問剪切板(復制,粘貼)的示例

    這篇文章主要介紹了Java 訪問剪切板(復制,粘貼)的示例,幫助大家更好的理解和使用Java,感興趣的朋友可以了解下
    2020-11-11
  • Java8中對于LocalDateTime的序列化和反序列化問題

    Java8中對于LocalDateTime的序列化和反序列化問題

    這篇文章主要介紹了Java8中對于LocalDateTime的序列化和反序列化問題,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2023-06-06
  • Java實現(xiàn)矩陣乘法以及優(yōu)化的方法實例

    Java實現(xiàn)矩陣乘法以及優(yōu)化的方法實例

    這篇文章主要給大家介紹了關于Java實現(xiàn)矩陣乘法以及優(yōu)化的相關資料,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2021-02-02

最新評論