最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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

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

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

代碼:

先寫個客戶類

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 + "]";
?? ?}
?? ?
?? ?

}

之后就寫兩個工具類和運(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("選擇錯誤,請重新輸入:");
?? ??? ??? ?}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 + ")錯誤,請重新輸入:");
?? ??? ??? ??? ?//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("選擇錯誤,請重新輸入:");
?? ??? ?}else break;
?? ??? ?}
?? ??? ?return c;
?? ?}


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

?? ??? ?for (;;) {
?? ??? ??? ?String str = readKeyBoard(1, false);
?? ??? ??? ?c = str.charAt(0);
?? ??? ??? ?if (c == '男' || c == '女') {
?? ??? ??? ??? ?break;
?? ??? ??? ?} else {
?? ??? ??? ??? ?System.out.println("輸入錯誤(只能選擇男或女),請重新輸入:");
?? ??? ??? ?}
?? ??? ?}
?? ??? ?return c;
?? ?}
?? ?/**
?? ? * 從鍵盤讀取一個長度不超過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ù)字輸入錯誤,請重新輸入:");
?? ??? ??? ?}
?? ??? ?}
?? ??? ?return n;
?? ?}
}
package jjave_16;

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

?? ?/**
?? ? * 查詢所有客戶
?? ? * 因為需要借助total的值,來確定是數(shù)組中的第幾個!!
?? ? */
?? ?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;
?*?? ?}
?* ?初步想出的方法,可惜實現(xiàn)很麻煩。。。
?*/
?? ?if(total>customers.length)return false;
?? ?
?? ?customers[total++]=cust;
?? ?return true;
? }

/**
?* 根據(jù)編號刪除客戶
?*/
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(" ? ? ? ? ? ? ? ? ? ? 請選擇(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("請選擇待修改客戶編號(-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("請選擇待刪除客戶編號(-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("編號\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ù)組實現(xiàn)客戶的保存,當(dāng)然里面使用到了高內(nèi)聚低耦合的設(shè)計概念。

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

相關(guān)文章

  • java 實現(xiàn)線程同步的方式有哪些

    java 實現(xiàn)線程同步的方式有哪些

    當(dāng)使用多個線程來訪問同一個數(shù)據(jù)時,非常容易出現(xiàn)線程安全問題,所以我們用同步機(jī)制來解決這些問題,本文將詳細(xì)介紹,需要的朋友可以參考下
    2012-11-11
  • mybatis注解開發(fā) 一對多嵌套查詢方式

    mybatis注解開發(fā) 一對多嵌套查詢方式

    這篇文章主要介紹了mybatis注解開發(fā) 一對多嵌套查詢方式,具有很好的參考價值,希望對大家有所幫助。
    2023-03-03
  • Java中ArrayList和LinkedList區(qū)別

    Java中ArrayList和LinkedList區(qū)別

    這篇文章主要介紹了Java中ArrayList和LinkedList區(qū)別,下面我們就重點聊一聊在日常開發(fā)中經(jīng)常被使用到的兩個集合類ArrayList和LinkedList的本質(zhì)區(qū)別吧,需要的朋友可以參考一下
    2022-01-01
  • Java線程使用同步鎖交替執(zhí)行打印奇數(shù)偶數(shù)的方法

    Java線程使用同步鎖交替執(zhí)行打印奇數(shù)偶數(shù)的方法

    這篇文章主要介紹了Java線程使用同步鎖交替執(zhí)行打印奇數(shù)偶數(shù)的方法。小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2019-01-01
  • Java守護(hù)線程和用戶線程的區(qū)別

    Java守護(hù)線程和用戶線程的區(qū)別

    這篇文章主要介紹了Java守護(hù)線程和用戶線程的區(qū)別,用戶線程和守護(hù)線程,默認(rèn)情況下我們創(chuàng)建的線程或線程池都是用戶線程,所以用戶線程也被稱之為普通線程,下文更多詳細(xì)內(nèi)容需要的小伙伴可以參考一下
    2022-05-05
  • SpringBoot中實現(xiàn)代理方式

    SpringBoot中實現(xiàn)代理方式

    這篇文章主要介紹了SpringBoot中實現(xiàn)代理方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2023-06-06
  • idea?Maven?插件?docker-maven-plugin?打包docker鏡像上傳到遠(yuǎn)程倉庫的過程詳解

    idea?Maven?插件?docker-maven-plugin?打包docker鏡像上傳到遠(yuǎn)程倉庫的過程詳解

    這篇文章主要介紹了idea Maven插件docker-maven-plugin打包docker鏡像上傳到遠(yuǎn)程倉庫,本文給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2023-05-05
  • 淺談hibernate之映射文件VS映射注解

    淺談hibernate之映射文件VS映射注解

    下面小編就為大家?guī)硪黄獪\談hibernate之映射文件VS映射注解。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-07-07
  • spring是如何解析xml配置文件中的占位符

    spring是如何解析xml配置文件中的占位符

    這篇文章主要介紹了spring是如何解析xml配置文件中的占位符,幫助大家更好的理解和使用spring框架,感興趣的朋友可以了解下
    2020-11-11
  • 解決SpringBoot項目中l(wèi)og4j與logback的Jar包沖突問題

    解決SpringBoot項目中l(wèi)og4j與logback的Jar包沖突問題

    這篇文章主要給大家介紹了解決SpringBoot項目中l(wèi)og4j與logback的Jar包沖突問題,文中有詳細(xì)的解決方法和沖突的原因,有遇到相同問題的朋友可以參考閱讀本文
    2023-10-10

最新評論

德格县| 探索| 伊春市| 根河市| 华蓥市| 怀来县| 丹棱县| 尉犁县| 怀宁县| 密云县| 罗定市| 菏泽市| 油尖旺区| 吉林市| 苏尼特左旗| 黄浦区| 阜南县| 南岸区| 石棉县| 库伦旗| 山丹县| 秦皇岛市| 连山| 怀化市| 黑河市| 雷波县| 乌拉特前旗| 霍城县| 鹤山市| 湛江市| 山丹县| 和平区| 伊宁县| 沾益县| 江源县| 崇礼县| 秦皇岛市| 台中市| 巫溪县| 乐昌市| 湘潭市|