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

java實(shí)現(xiàn)客戶管理系統(tǒng)

 更新時(shí)間:2022年05月26日 17:17:00   作者:@java小白  
這篇文章主要為大家詳細(xì)介紹了java實(shí)現(xiàn)客戶管理系統(tǒng),文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了java實(shí)現(xiàn)客戶管理系統(tǒng)的具體代碼,供大家參考,具體內(nèi)容如下

代碼:

先寫個(gè)客戶類

package jjave_16;

/**
?* 客戶類
?*
?*/
public class Customer {

?? ?private String name;
?? ?private char gender;
?? ?private int age;
?? ?private String phone;
?? ?private String email;

?? ?public Customer(String name, char gender, int age, String phone, String email) {
?? ??? ?this.name = name;
?? ??? ?this.gender = gender;
?? ??? ?this.age = age;
?? ??? ?this.phone = phone;
?? ??? ?this.email = email;
?? ?}

?? ?public String getName() {
?? ??? ?return name;
?? ?}

?? ?public void setName(String name) {
?? ??? ?this.name = name;
?? ?}

?? ?public char getGender() {
?? ??? ?return gender;
?? ?}

?? ?public void setGender(char gender) {
?? ??? ?this.gender = gender;
?? ?}

?? ?public int getAge() {
?? ??? ?return age;
?? ?}

?? ?public void setAge(int age) {
?? ??? ?this.age = age;
?? ?}

?? ?public String getPhone() {
?? ??? ?return phone;
?? ?}

?? ?public void setPhone(String phone) {
?? ??? ?this.phone = phone;
?? ?}

?? ?public String getEmail() {
?? ??? ?return email;
?? ?}

?? ?public void setEmail(String email) {
?? ??? ?this.email = email;
?? ?}

?? ?public String toString() {
?? ??? ?return "Customer [name=" + name + ", gender=" + gender + ", age=" + age + ", phone=" + phone + ", email=" + email + "]";
?? ?}
?? ?
?? ?

}

之后就寫兩個(gè)工具類和運(yùn)行類

package jjave_16;
/**
?* 工具類:操作字符長度輸入是否正確
?*
?*/
import java.util.Scanner;
public class CMUtility {
?? ?/**
?? ? * 用于界面菜單的選擇,該方法讀取鍵盤,如果用戶輸入1-5中的任意字符,則方法返回,返回值為用戶鍵入字符
?? ? */
?? ?private static Scanner scan=new Scanner(System.in);//少了static,下面的方面無法使用
?? ?
?? ?public static char readMenuSelection() {
?? ??? ?char c;
?? ??? ?for(;;) {
?? ??? ??? ?String str=readKeyBoard(1,false);
?? ??? ??? ?c=str.charAt(0);
?? ??? ??? ?if(c!='1'&&c!='2'&&c!='3'&&c!='4'&&c!='5') {
?? ??? ??? ??? ?System.out.println("選擇錯(cuò)誤,請(qǐng)重新輸入:");
?? ??? ??? ?}else break;
?? ??? ?}
?? ??? ?return c;
?? ?}
?? ?/**
?? ? *?
?? ? * @param?
?? ? * @param blankReturn
?? ? * @return
?? ? */
?? ?public static String readKeyBoard(int limit, boolean blankReturn) {
?? ??? ?String line=" ";
?? ? ?

?? ??? ?for(;;) {
?? ??? ??? ?line=scan.nextLine();
?? ??? ??? ?if(line.length()==0) {
?? ??? ??? ??? ?if(blankReturn)
?? ??? ??? ??? ??? ?return line;
?? ??? ??? ?}
?? ??? ??? ?if(line.length()<1||line.length()>limit) {
?? ??? ??? ??? ?System.out.println("輸入長度(在大于)" + limit + ")錯(cuò)誤,請(qǐng)重新輸入:");
?? ??? ??? ??? ?//continue;
?? ??? ??? ?}else break;
?? ??? ??? ?
?? ??? ?}
?? ??? ?return line;
?? ?}
?? ?/**
?? ? * 功能5: ?退出判斷
?? ? */
?? ?public static char readConfirmSelection() {
?? ??? ?char c;
?? ??? ?for(;;) {
?? ??? ?String str=readKeyBoard(1,false).toUpperCase();
?? ??? ?c=str.charAt(0);
?? ??? ?if(c!='Y'&&c!='N') {
?? ??? ??? ?System.out.println("選擇錯(cuò)誤,請(qǐng)重新輸入:");
?? ??? ?}else break;
?? ??? ?}
?? ??? ?return c;
?? ?}


?? ?/**
?? ? * 從鍵盤讀取一個(gè)長度不超過limit的字符串,并將其作為方法的返回值
?? ? */
?? ?public static String readString(int i) {
?? ??? ?
?? ??? ?return readKeyBoard(i,false);
?? ?}
?? ?
?? ?/**
?? ? * 從鍵盤讀取一個(gè)字符,并將其作為方法的返回值
?? ? */
?? ?public static char readChar() {
?? ??? ?char c;

?? ??? ?for (;;) {
?? ??? ??? ?String str = readKeyBoard(1, false);
?? ??? ??? ?c = str.charAt(0);
?? ??? ??? ?if (c == '男' || c == '女') {
?? ??? ??? ??? ?break;
?? ??? ??? ?} else {
?? ??? ??? ??? ?System.out.println("輸入錯(cuò)誤(只能選擇男或女),請(qǐng)重新輸入:");
?? ??? ??? ?}
?? ??? ?}
?? ??? ?return c;
?? ?}
?? ?/**
?? ? * 從鍵盤讀取一個(gè)長度不超過2位的整數(shù),并將其作為方法的返回值
?? ? */
?? ?public static int readInt() {
?? ??? ?int n;
?? ??? ?for (;;) {
?? ??? ??? ?String str = readKeyBoard(2, false);
?? ??? ??? ?try {
?? ??? ??? ??? ?n = Integer.parseInt(str);
?? ??? ??? ??? ?break;
?? ??? ??? ?} catch (Exception e) {
?? ??? ??? ??? ?System.out.println("數(shù)字輸入錯(cuò)誤,請(qǐng)重新輸入:");
?? ??? ??? ?}
?? ??? ?}
?? ??? ?return n;
?? ?}
}
package jjave_16;

/**
?* 工具類:操作存儲(chǔ)客戶的數(shù)組增刪改查
?*
?*/
public class CustomerList {
?? ?private ?Customer[] customers;
?? ?private int total=0;
?? ?
?? ?public CustomerList(int index){
?? ? customers=new Customer[index];?? ?
?? ?}

?? ?/**
?? ? * 查詢所有客戶
?? ? * 因?yàn)樾枰柚鷗otal的值,來確定是數(shù)組中的第幾個(gè)??!
?? ? */
?? ?public ?Customer[] getAllCustomers() {
?? ??? ?Customer[] custs = new Customer[total];
?? ??? ?for(int i=0;i<total;i++) {
?? ??? ??? ?custs[i] = customers[i];
?? ??? ?}
?? ??? ?return custs;
?? ??? ??? ?
?? ?}
?? ?public ?Customer getCustomer(int limit) {
?? ??? ?if(limit>0||limit<total) {
?? ??? ??? ?return customers[limit];
?? ??? ?}else return null;
?? ?}


public ?boolean addCustomer(Customer cust) {
/**
?* ?? ?for(int i=0;i<index;i++) {
?*?? ??? ?customers[i]=cust;
?*?? ?}
?* ?初步想出的方法,可惜實(shí)現(xiàn)很麻煩。。。
?*/
?? ?if(total>customers.length)return false;
?? ?
?? ?customers[total++]=cust;
?? ?return true;
? }

/**
?* 根據(jù)編號(hào)刪除客戶
?*/
public ?boolean deleteCustomer(int index) {
?? ?if(index<0 || index>=total) return false;
?? ?/**
?? ? * for里面的條件值得一想。
?? ? */
?? ?for(int i=index;i<total-1;i++) {
?? ??? ?customers[i]=customers[i+1];
?? ?}
?? ?customers[--total]=null;
?? ?
?? ?return true;
}

public ?boolean replaceCustomer(int index,Customer cust) {
?? ?if(index<0 || index>=total) return false;
?? ?
?? ?
?? ?customers[index]=cust;
?? ?
?? ?
?? ?return true;
?? ?
}


}
package com.up;

/**
?* 業(yè)務(wù)類
?*?
?*/
public class CustomerView {

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

?? ?}

?? ?private CustomerList customers = new CustomerList(10);

?? ?public CustomerView() {
?? ??? ?Customer cust = new Customer("張三", '男', 28, "010-56253825", "abc@email.com");
?? ??? ?customers.addCustomer(cust);
?? ?}

?? ?public void enterMainMenu() {
?? ??? ?boolean loopFlag = true;

?? ??? ?do {
?? ??? ??? ?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(" ? ? ? ? ? ? ? ? ? ? 請(qǐng)選擇(1-5):");

?? ??? ??? ?char key = CMUtility.readMenuSelection();
?? ??? ??? ?switch (key) {
?? ??? ??? ?case '1':
?? ??? ??? ??? ?addNewCustomer();
?? ??? ??? ??? ?break;
?? ??? ??? ?case '2':
?? ??? ??? ??? ?modifyCustomer();
?? ??? ??? ??? ?break;
?? ??? ??? ?case '3':
?? ??? ??? ??? ?deleteCustomer();
?? ??? ??? ??? ?break;
?? ??? ??? ?case '4':
?? ??? ??? ??? ?listAllCustomer();
?? ??? ??? ??? ?break;
?? ??? ??? ?case '5':
?? ??? ??? ??? ?System.out.println("確認(rèn)是否退出(Y/N):");
?? ??? ??? ??? ?char yn = CMUtility.readConfirmSelection();
?? ??? ??? ??? ?if (yn == 'Y') {
?? ??? ??? ??? ??? ?loopFlag = false;
?? ??? ??? ??? ?}
?? ??? ??? ??? ?break;
?? ??? ??? ?}
?? ??? ?} while (loopFlag);
?? ?}

?? ?private void addNewCustomer() {
?? ??? ?System.out.println("------------------------添加客戶----------------------");
?? ??? ?System.out.println("姓名:");
?? ??? ?String name = CMUtility.readString(4);
?? ??? ?System.out.println("性別:");
?? ??? ?char gender = CMUtility.readChar();
?? ??? ?System.out.println("年齡");
?? ??? ?int age = CMUtility.readInt();
?? ??? ?System.out.println("電話:");
?? ??? ?String phone = CMUtility.readString(15);
?? ??? ?System.out.println("郵箱:");
?? ??? ?String email = CMUtility.readString(15);

?? ??? ?Customer cust = new Customer(name, gender, age, phone, email);
?? ??? ?boolean flag = customers.addCustomer(cust);
?? ??? ?if (flag) {
?? ??? ??? ?System.out.println("------------------------添加完成----------------------");
?? ??? ?} else {
?? ??? ??? ?System.out.println("---------------------記錄已滿,無法添加----------------------");
?? ??? ?}
?? ?}

?? ?private void modifyCustomer() {
?? ??? ?System.out.println("------------------------修改客戶----------------------");

?? ??? ?int index = 0;
?? ??? ?Customer cust = null;
?? ??? ?for (;;) {

?? ??? ??? ?System.out.println("請(qǐng)選擇待修改客戶編號(hào)(-1退出):");
?? ??? ??? ?index = CMUtility.readInt();
?? ??? ??? ?if (index == -1) {
?? ??? ??? ??? ?return;
?? ??? ??? ?}
?? ??? ??? ?
?? ??? ??? ?cust = customers.getCustomer(index - 1);
?? ??? ??? ?if(cust == null){
?? ??? ??? ??? ?System.out.println("無法找到指定客戶!");
?? ??? ??? ?}else
?? ??? ??? ??? ?break;
?? ??? ?}
?? ??? ?
?? ??? ?System.out.println("姓名("+cust.getName()+"):");
?? ??? ?String name = CMUtility.readString(4,cust.getName());
?? ??? ?System.out.println("性別("+cust.getGender()+"):");
?? ??? ?char gender = CMUtility.readChar();
?? ??? ?System.out.println("年齡("+cust.getAge()+"):");
?? ??? ?int age = CMUtility.readInt();
?? ??? ?System.out.println("電話("+cust.getPhone()+"):");
?? ??? ?String phone = CMUtility.readString(15,cust.getPhone());
?? ??? ?System.out.println("郵箱("+cust.getEmail()+"):");
?? ??? ?String email = CMUtility.readString(15,cust.getEmail());
?? ??? ?
?? ??? ?cust = new Customer(name,gender,age,phone,email);
?? ??? ?
?? ??? ?boolean flag = customers.replaceCustomer(index -1,cust);
?? ??? ?if(flag){
?? ??? ??? ?System.out.println("------------------------修改完成----------------------");
?? ??? ?}else{
?? ??? ??? ?System.out.println("------------------無法找到指定客戶,修改失敗------------------");
?? ??? ?}
?? ??? ?
?? ?}

?? ?private void deleteCustomer() {
?? ??? ?System.out.println("------------------------刪除客戶----------------------");

?? ??? ?int index = 0;
?? ??? ?Customer cust = null;

?? ??? ?for (;;) {
?? ??? ??? ?System.out.println("請(qǐng)選擇待刪除客戶編號(hào)(-1退出):");
?? ??? ??? ?index = CMUtility.readInt();
?? ??? ??? ?if (index == -1) {
?? ??? ??? ??? ?return;
?? ??? ??? ?}

?? ??? ??? ?cust = customers.getCustomer(index - 1);
?? ??? ??? ?if (cust == null) {
?? ??? ??? ??? ?System.out.println("無法找到指定客戶!");
?? ??? ??? ?} else
?? ??? ??? ??? ?break;
?? ??? ?}

?? ??? ?System.out.println("確認(rèn)是否刪除(Y/N):");
?? ??? ?char yn = CMUtility.readConfirmSelection();
?? ??? ?if (yn == 'N')
?? ??? ??? ?return;

?? ??? ?boolean flag = customers.deleteCustomer(index - 1);
?? ??? ?if (flag) {
?? ??? ??? ?System.out.println("------------------------刪除完成----------------------");
?? ??? ?} else {
?? ??? ??? ?System.out.println("------------------無法找到指定客戶,刪除失敗------------------");
?? ??? ?}
?? ?}

?? ?private void listAllCustomer() {
?? ??? ?System.out.println("------------------------客戶列表----------------------");
?? ??? ?Customer[] custs = customers.getAllCustomers();
?? ??? ?if (custs.length == 0) {
?? ??? ??? ?System.out.println("沒有客戶記錄!");
?? ??? ?} else {
?? ??? ??? ?System.out.println("編號(hào)\t姓名\t性別\t年齡\t電話\t\t郵箱");
?? ??? ??? ?for (int i = 0; i < custs.length; i++) {
?? ??? ??? ??? ?System.out.println(i + 1 + "\t" + custs[i].getName() + "\t" + custs[i].getGender() + "\t" + custs[i].getAge() + "\t" + custs[i].getPhone() + "\t" + custs[i].getEmail());
?? ??? ??? ?}
?? ??? ?}
?? ?}

}

暫時(shí)先用數(shù)組實(shí)現(xiàn)客戶的保存,當(dāng)然里面使用到了高內(nèi)聚低耦合的設(shè)計(jì)概念。

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • 詳解Java基礎(chǔ)知識(shí)——JDBC

    詳解Java基礎(chǔ)知識(shí)——JDBC

    這篇文章主要介紹了Java基礎(chǔ)知識(shí)——JDBC,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-04-04
  • SpringBoot解決@Component無法注入其他Bean的問題

    SpringBoot解決@Component無法注入其他Bean的問題

    這篇文章主要介紹了SpringBoot解決@Component無法注入其他Bean的問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2021-08-08
  • 淺談synchronized方法對(duì)非synchronized方法的影響

    淺談synchronized方法對(duì)非synchronized方法的影響

    下面小編就為大家?guī)硪黄獪\談synchronized方法對(duì)非synchronized方法的影響。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2017-10-10
  • SpringBoot整合MyBatis的代碼詳解

    SpringBoot整合MyBatis的代碼詳解

    這篇文章主要介紹了SpringBoot整合MyBatis筆記記錄,大家需要注意在整合mybatis之前我們需要相對(duì)應(yīng)的導(dǎo)入相關(guān)依賴,首先需要在java的目錄和resources下創(chuàng)建mapper文件夾,對(duì)SpringBoot整合MyBatis的詳細(xì)過程感興趣的朋友一起看看吧
    2022-05-05
  • spring boot的攔截器簡單使用示例代碼

    spring boot的攔截器簡單使用示例代碼

    這篇文章主要介紹了spring boot的攔截器簡單使用實(shí)例代碼,需要的的朋友參考下吧
    2017-04-04
  • Eclipse快捷鍵使用小結(jié)

    Eclipse快捷鍵使用小結(jié)

    Eclipse是用java的同行必不可少的工具,我總結(jié)了一下它的快捷鍵,太常用的ctrl+單擊、ctrl+shift+F、Ctrl+1等我就不細(xì)說了,主要是方便查看。下邊小編就詳細(xì)的為大家介紹一下
    2013-07-07
  • 詳解Java如何在業(yè)務(wù)代碼中優(yōu)雅的使用策略模式

    詳解Java如何在業(yè)務(wù)代碼中優(yōu)雅的使用策略模式

    這篇文章主要為大家介紹了Java如何在業(yè)務(wù)代碼中優(yōu)雅的使用策略模式,文中的示例代碼講解詳細(xì),具有一定的學(xué)習(xí)價(jià)值,感興趣的可以了解下
    2023-08-08
  • java中instanceof與Class的等價(jià)性代碼示例

    java中instanceof與Class的等價(jià)性代碼示例

    這篇文章主要介紹了java中instanceof與Class的等價(jià)性代碼示例,小編覺得還是挺不錯(cuò)的,具有一定借鑒價(jià)值,需要的朋友可以參考下
    2018-01-01
  • Java中IO流 字節(jié)流實(shí)例詳解

    Java中IO流 字節(jié)流實(shí)例詳解

    這篇文章主要介紹了Java中IO流 字節(jié)流實(shí)例詳解的相關(guān)資料,需要的朋友可以參考下
    2017-05-05
  • Java實(shí)現(xiàn)SMS短信通發(fā)送手機(jī)驗(yàn)證碼案例講解

    Java實(shí)現(xiàn)SMS短信通發(fā)送手機(jī)驗(yàn)證碼案例講解

    這篇文章主要介紹了Java實(shí)現(xiàn)SMS短信通發(fā)送手機(jī)驗(yàn)證碼案例講解,本篇文章通過簡要的案例,講解了該項(xiàng)技術(shù)的了解與使用,以下就是詳細(xì)內(nèi)容,需要的朋友可以參考下
    2021-08-08

最新評(píng)論