0910-12学习记录-开发人员调度软件项目三

博客记录了开发人员在0910-0912期间的项目进展,主要完成了addMember功能,涉及com.zzd.domain、architect、Designer、Employee等代码包和服务。
摘要由CSDN通过智能技术生成

在这里插入图片描述
完成到addMember

0912 全部完成

在这里插入图片描述
代码部分:
com.zzd.domain
architect

package com.zzd.domain;

public class Architect extends Designer {


    private int  stock;//股票

    public Architect() {
        super();
    }

    public Architect(int id, String name, int age, double salary, Equipment equipment, double bonus, int stock) {
        super(id, name, age, salary, equipment, bonus);
        this.stock = stock;
    }

    public int getStock() {
        return stock;
    }

    public void setStock(int stock) {
        this.stock = stock;
    }

    @Override
    public String toString() {
        return getDetail() + "\t架构师\t" + getStatus() + "\t" + getBonus() + "\t" + stock + "\t" + getEquipment().getDescription();
    }
    public String getDetailsForTeam(){
        return getTeamBaseDetails() + "\t架构师\t" + getBonus() + "\t" + getStock();
    }
}

Designer

package com.zzd.domain;

public class Designer extends Programmer {

    private double bonus;//奖金

    public Designer() {
        super();
    }

    public Designer(int id, String name, int age, double salary, Equipment equipment, double bonus) {
        super(id, name, age, salary, equipment);
        this.bonus = bonus;
    }

    public double getBonus() {
        return bonus;
    }

    public void setBonus(double bonus) {
        this.bonus = bonus;
    }

    @Override
    public String toString() {
        return getDetail() + "\t设计师\t" + getStatus() + "\t" + bonus + "\t\t\t" + getEquipment().getDescription();
    }
    public String getDetailsForTeam(){
        return getTeamBaseDetails() + "\t设计师\t" + getBonus();
    }
}

Employee

package com.zzd.domain;

public class Employee {
    private int id;
    private String name;
    private int age;
    private double salary;

    public Employee() {
        super();
    }

    public Employee(int id, String name, int age, double salary) {
        super();
        this.id = id;
        this.name = name;
        this.age = age;
        this.salary = salary;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

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

    public int getAge() {
        return age;
    }

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

    public double getSalary() {
        return salary;
    }

    public void setSalary(double salary) {
        this.salary = salary;
    }
    public String getDetail(){
        return id + "\t" + name + "\t" + age + "\t" + salary;
    }
    @Override
    public String toString() {
        return getDetail();
    }
}

package com.zzd.domain;

public interface Equipment {
    String getDescription();
}

package com.zzd.domain;

public class NoteBook implements Equipment {
    private String model;
    private double price;

    public String getModel() {
        return model;
    }

    public void setModel(String model) {
        this.model = model;
    }

    public double getPrice() {
        return price;
    }

    public void setPrice(double price) {
        this.price = price;
    }

    public NoteBook() {
        super();
    }
    public NoteBook(String model,double price){
        super();
        this.model = model;
        this.price = price;
    }

    @Override
    public String getDescription() {
        return model + "(" + price + ")";
    }
}
package com.zzd.domain;

public class PC implements Equipment {

    private String model;
    private String display;

    public PC() {
        super();
    }
    public PC(String model,String display){
        super();
        this.model = model;
        this.display = display;
    }

    public String getModel() {
        return model;
    }

    public void setModel(String model) {
        this.model = model;
    }

    public String getDisplay() {
        return display;
    }

    public void setDisplay(String display) {
        this.display = display;
    }

    @Override
    public String getDescription() {
        return model + "(" + display + ")";
    }
}
package com.zzd.domain;

public class Printer implements Equipment {
    private String name;
    private String type;

    public Printer() {
        super();
    }

    public Printer(String name, String type) {
        this.name = name;
        this.type = type;
    }

    public String getName() {
        return name;
    }

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

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    @Override
    public String getDescription() {
        return name + "(" + type + ")";
    }
}
package com.zzd.domain;

import com.zzd.service.Status;

public class Programmer extends Employee {
    private int memberid;
    private Status status = Status.FREE;
    private Equipment equipment;

    public Programmer() {
        super();
    }

    public Programmer(int id, String name, int age, double salary, Equipment equipment) {
        super(id, name, age, salary);
        this.equipment = equipment;
    }

    public int getMemberid() {
        return memberid;
    }

    public void setMemberid(int memberid) {
        this.memberid = memberid;
    }

    public Status getStatus() {
        return status;
    }

    public void setStatus(Status status) {
        this.status = status;
    }

    public Equipment getEquipment() {
        return equipment;
    }

    public void setEquipment(Equipment equipment) {
        this.equipment = equipment;
    }


    @Override
    public String toString() {
        return super.toString() + "\t程序员\t" + status + "\t\t\t\t\t" + equipment.getDescription();
    }
    public String getTeamBaseDetails(){
        return memberid + "/" + getId() + "\t\t" + getName() + "\t" + getAge() + "\t" + getSalary();
    }
    public String getDetailsForTeam(){
        return getTeamBaseDetails() + "\t程序员";
    }
}

package com.zzd.service

package com.zzd.service;


public class Data {
    public static final int EMPLOYEE = 10;
    public static final int PROGRAMMER = 11;
    public static final int DESIGNER = 12;
    public static final int ARCHITECT = 13;

    public static final int PC = 21;
    public static final int NOTEBOOK = 22;
    public static final int PRINTER = 23;

    //Employee  :  10, id, name, age, salary
    //Programmer:  11, id, name, age, salary
    //Designer  :  12, id, name, age, salary, bonus
    //Architect :  13, id, name, age, salary, bonus, stock
    public static final String[][] EMPLOYEES = {
        {"10", "1", "马  云", "22", "3000"},
        {"13", "2", "马化腾", "32", "18000", "15000", "2000"},
        {"11", "3", "李彦宏", "23", "7000"},
        {"11", "4", "刘强东", "24", "7300"},
        {"12", "5", "雷  军", "28", "10000", "5000"},
        {"11", "6", "任志强", "22", "6800"},
        {"12", "7", "柳传志", "29", "10800","5200"},
        {"13", "8", "杨元庆", "30", "19800", "15000", "2500"},
        {"12", "9", "史玉柱", "26", "9800", "5500"},
        {"11", "10", "丁  磊", "21", "6600"},
        {"11", "11", "张朝阳", "25", "7100"},
        {"12", "12", "杨致远", "27", "9600", "4800"}
    };
    
    //如下的EQUIPMENTS数组与上面的EMPLOYEES数组元素一一对应
    //PC      :21, model, display
    //NoteBook:22, model, price
    //Printer :23, name, type 
    public static final String[][] EQUIPMENTS = {
        {},
        {"22", "联想T4", "6000"},
        {"21", "戴尔", "NEC17寸"},
        {"21", "戴尔", "三星 17寸"},
        {"23", "佳能 2900", "激光"},
        {"21", "华硕", "三星 17寸"},
        {"21", "华硕", "三星 17寸"},
        {"23", "爱普生20K", "针式"},
        {"22", "惠普m6", "5800"},
        {"21", "戴尔", "NEC 17寸"},
        {"21", "华硕","三星 17寸"},
        {"22", "惠普m6", "5800"}
    };
}
package com.zzd.service;

import com.sun.corba.se.impl.protocol.INSServerRequestDispatcher;
import com.zzd.domain.*;

import static com.zzd.service.Data.*;
/**
*@Description 负责将Data中的数据封装到Employee[]数组中,同时提供相关操作Employee[]的方法。
*@Param
*@Return
*@Author pdzz
*@Date 2019/9/11
*@Time 10:12
*/
public class NameListService {

    private Employee[] employees;
    public NameListService(){
         /*  根据项目提供的Data类构建相应大小的employees数组
             再根据Data类中的数据构建不同的对象,包括Employee、Programmer、Designer和Architect对象,以及相关联的Equipment子类的对象
             将对象存于数组中
        */
         employees = new Employee[EMPLOYEES.length];
         for (int i = 0;i<EMPLOYEES.length;i++){
             int type = Integer.parseInt(EMPLOYEES[i][0]);
             int id = Integer.parseInt(EMPLOYEES[i][1]);
             String name = EMPLOYEES[i][2];
             int age = Integer.parseInt(EMPLOYEES[i][3]);
             double salary = Double.parseDouble(EMPLOYEES[i][4]);
             Equipment equipment;
             double bonus;
             int stock;
             switch (type){
                 case EMPLOYEE:
                    employees[i] = new Employee(id,name,age,salary);
                     break;
                 case PROGRAMMER:
                     equipment = createEquipment(i);
                     employees[i] = new Programmer(id,name,age,salary,equipment);
                     break;
                 case DESIGNER:
                     equipment = createEquipment(i);
                     bonus = Double.parseDouble(EMPLOYEES[i][5]);
                     employees[i] = new Designer(id,name,age,salary,equipment,bonus);
                     break;
                 case ARCHITECT:
                     equipment = createEquipment(i);
                     bonus = Double.parseDouble(EMPLOYEES[i][5]);
                     stock = Integer.parseInt(EMPLOYEES[i][6]);
                     employees[i] = new Architect(id,name,age,salary,equipment,bonus,stock);
                     break;
             }
         }



    }
    public Equipment createEquipment(int index){
        int type = Integer.parseInt(EQUIPMENTS[index][0]);
        String modelOrname = EQUIPMENTS[index][1];
        switch (type){
            case PC:
                String display = EQUIPMENTS[index][2];
                return new PC(modelOrname,display);
            case NOTEBOOK:
                double price = Double.parseDouble(EQUIPMENTS[index][2]);
                return new NoteBook(modelOrname,price);
            case PRINTER:
                String key = EQUIPMENTS[index][2];
                return new Printer(modelOrname,key);
        }
        return null;
    }




    /**
    *@Description Employee的get方法
    *@Param 
    *@Return 
    *@Author pdzz
    *@Date 2019/9/11
    *@Time 14:44
    */
    public Employee[] getAllEmployees(){



        return employees;
    }
    /**
    *@Description 找指定ID的员工
    *@Param 
    *@Return 
    *@Author pdzz
    *@Date 2019/9/11
    *@Time 14:45
    */
    public Employee getEmployee(int id) throws TeamException {
        for (int i = 0;i < employees.length;i++){
            if (employees[i].getId() == id){
                return employees[i];
            }
        }
        throw new TeamException("找不到指定id的员工");

    }

}
package com.zzd.service;

import javax.naming.Name;

/**
*@Description 表示员工的状态
*@Param
*@Return
*@Author pdzz
*@Date 2019/9/11
*@Time 9:52
*/
public class Status {
    private final String name;

    public Status(String name) {
        this.name = name;
    }
    public static final Status FREE = new Status("free");
    public static final Status BUSY = new Status("busy");
    public static final Status VACATION = new Status("vacation");

    public String getName() {
        return name;
    }

    @Override
    public String toString() {
        return name ;
    }
}
package com.zzd.service;

import com.zzd.domain.Employee;

public class TeamException extends Exception {
    static final long serialVersionUID = -3387516999948L;

    public TeamException() {
        super();
    }

    public TeamException(String message) {
        super(message);
    }
}
package com.zzd.service;

import com.sun.scenario.effect.impl.sw.sse.SSEBlend_SRC_OUTPeer;
import com.zzd.domain.Architect;
import com.zzd.domain.Designer;
import com.zzd.domain.Employee;
import com.zzd.domain.Programmer;

/**
*@Description 关于开发团队成员的管理:添加、删除等
*@Param 
*@Return 
*@Author pdzz
*@Date 2019/9/11
*@Time 15:38
*/
public class TeamService {
    public static int counter = 1;
    private final int MAX_MERBER = 5;
    private Programmer[] team = new Programmer[MAX_MERBER];
    int total;//记录开发团队中实际的人数
    public Programmer[] getTeam(){
        Programmer[] team = new Programmer[total];
        for (int i = 0;i < team.length;i++){
            team[i] = this.team[i];
        }

        return team;
    }
    public void addMember(Employee e) throws TeamException {
        if (total >= MAX_MERBER){
            throw new TeamException("成员已满无法添加");
        }
        if (!(e instanceof Programmer)){
            throw new TeamException("成员不是开发成员,无法添加");
        }
        if (isExist(e)){
            throw new TeamException("该员工已是团队成员");
        }
        Programmer p = (Programmer) e;
        if ((p.getStatus().getName().equals("BUSY"))){
            throw new TeamException("该员工已是某团队成员");
        }else if ("VACATION".equals(p.getStatus().getName())){
            throw new TeamException("该员工正在休假");
        }
        int numOfArch = 0,numOfDes = 0,numOfPro = 0;
        for (int i = 0;i<team.length;i++){
            if (team[i] instanceof Architect){
                numOfArch++;
            }else if (team[i] instanceof Designer){
                numOfDes++;
            }else if (team[i] instanceof Programmer){
                numOfPro++;
            }
        }
        if (p instanceof Architect){
            if (numOfArch >= 1){
                throw new TeamException("团队中最多有一名架构师");
            }
        }else if (p instanceof Designer){
            if (numOfDes >= 2){
                throw new TeamException("团队中最多有两名设计师");
            }
        }else if (p instanceof Programmer){
            if (numOfPro >= 3){
                throw new TeamException("团队中最多有三名程序员");
            }
        }
        team[total++] = p;
        p.setStatus(Status.BUSY);
        p.setMemberid(counter++);
    }


    private boolean isExist(Employee e){
        for (int i = 0;i < total;i++){
            if (team[i].getId() == e.getId()){
                return true;
            }
        }
        return false;
    }
    public void removeMember(int memberId) throws TeamException {
        int i = 0;
        
        /**
        *@Description 先找出来,再setfree,再把之后的移位,再把最后位置的置null
        *@Param [memberId]
        *@Return void
        *@Author pdzz
        *@Date 2019/9/12
        *@Time 10:32
        */
        for(;i < total;i++){
            if (team[i].getMemberid() == memberId){
                team[i].setStatus(Status.FREE);
                break;
            }
        }

        //如果没找到
        if (total == i){
            throw new TeamException("找不到指定Memberid的员工");
        }

        //循环移位
        for (int j = i + 1;j < total ;j++){
            team[j-1] = team[j];
        }

        //最后的置null
        team[total-1] = null;
        total--;

        //简洁的写法
        /*team[--total] = null;*/
    }
}

com.zzd.service


package com.zzd.service;

import com.sun.corba.se.impl.protocol.INSServerRequestDispatcher;
import com.zzd.domain.*;

import static com.zzd.service.Data.*;
/**
*@Description 负责将Data中的数据封装到Employee[]数组中,同时提供相关操作Employee[]的方法。
*@Param
*@Return
*@Author pdzz
*@Date 2019/9/11
*@Time 10:12
*/
public class NameListService {

    private Employee[] employees;
    public NameListService(){
         /*  根据项目提供的Data类构建相应大小的employees数组
             再根据Data类中的数据构建不同的对象,包括Employee、Programmer、Designer和Architect对象,以及相关联的Equipment子类的对象
             将对象存于数组中
        */
         employees = new Employee[EMPLOYEES.length];
         for (int i = 0;i<EMPLOYEES.length;i++){
             int type = Integer.parseInt(EMPLOYEES[i][0]);
             int id = Integer.parseInt(EMPLOYEES[i][1]);
             String name = EMPLOYEES[i][2];
             int age = Integer.parseInt(EMPLOYEES[i][3]);
             double salary = Double.parseDouble(EMPLOYEES[i][4]);
             Equipment equipment;
             double bonus;
             int stock;
             switch (type){
                 case EMPLOYEE:
                    employees[i] = new Employee(id,name,age,salary);
                     break;
                 case PROGRAMMER:
                     equipment = createEquipment(i);
                     employees[i] = new Programmer(id,name,age,salary,equipment);
                     break;
                 case DESIGNER:
                     equipment = createEquipment(i);
                     bonus = Double.parseDouble(EMPLOYEES[i][5]);
                     employees[i] = new Designer(id,name,age,salary,equipment,bonus);
                     break;
                 case ARCHITECT:
                     equipment = createEquipment(i);
                     bonus = Double.parseDouble(EMPLOYEES[i][5]);
                     stock = Integer.parseInt(EMPLOYEES[i][6]);
                     employees[i] = new Architect(id,name,age,salary,equipment,bonus,stock);
                     break;
             }
         }



    }
    public Equipment createEquipment(int index){
        int type = Integer.parseInt(EQUIPMENTS[index][0]);
        String modelOrname = EQUIPMENTS[index][1];
        switch (type){
            case PC:
                String display = EQUIPMENTS[index][2];
                return new PC(modelOrname,display);
            case NOTEBOOK:
                double price = Double.parseDouble(EQUIPMENTS[index][2]);
                return new NoteBook(modelOrname,price);
            case PRINTER:
                String key = EQUIPMENTS[index][2];
                return new Printer(modelOrname,key);
        }
        return null;
    }




    /**
    *@Description Employee的get方法
    *@Param 
    *@Return 
    *@Author pdzz
    *@Date 2019/9/11
    *@Time 14:44
    */
    public Employee[] getAllEmployees(){



        return employees;
    }
    /**
    *@Description 找指定ID的员工
    *@Param 
    *@Return 
    *@Author pdzz
    *@Date 2019/9/11
    *@Time 14:45
    */
    public Employee getEmployee(int id) throws TeamException {
        for (int i = 0;i < employees.length;i++){
            if (employees[i].getId() == id){
                return employees[i];
            }
        }
        throw new TeamException("找不到指定id的员工");

    }

}

com.zzd.view;


package com.zzd.view;

import java.util.*;
/**
 * 
 * @Description 项目中提供了TSUtility.java类,可用来方便地实现键盘访问。
 * @author shkstart  Email:shkstart@126.com
 * @version 
 * @date 2019年2月12日上午12:02:58
 *
 */
public class TSUtility {
    private static Scanner scanner = new Scanner(System.in);
    /**
     * 
     * @Description 该方法读取键盘,如果用户键入’1’-’4’中的任意字符,则方法返回。返回值为用户键入字符。
     * @author shkstart
     * @date 2019年2月12日上午12:03:30
     * @return
     */
	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') {
                System.out.print("选择错误,请重新输入:");
            } else break;
        }
        return c;
    }
	/**
	 * 
	 * @Description 该方法提示并等待,直到用户按回车键后返回。
	 * @author shkstart
	 * @date 2019年2月12日上午12:03:50
	 */
    public static void readReturn() {
        System.out.print("按回车键继续...");
        readKeyBoard(100, true);
    }
    /**
     * 
     * @Description 该方法从键盘读取一个长度不超过2位的整数,并将其作为方法的返回值。
     * @author shkstart
     * @date 2019年2月12日上午12:04:04
     * @return
     */
    public static int readInt() {
        int n;
        for (; ; ) {
            String str = readKeyBoard(2, false);
            try {
                n = Integer.parseInt(str);
                break;
            } catch (NumberFormatException e) {
                System.out.print("数字输入错误,请重新输入:");
            }
        }
        return n;
    }
    /**
     * 
     * @Description 从键盘读取‘Y’或’N’,并将其作为方法的返回值。
     * @author shkstart
     * @date 2019年2月12日上午12:04:45
     * @return
     */
    public static char readConfirmSelection() {
        char c;
        for (; ; ) {
            String str = readKeyBoard(1, false).toUpperCase();
            c = str.charAt(0);
            if (c == 'Y' || c == 'N') {
                break;
            } else {
                System.out.print("选择错误,请重新输入:");
            }
        }
        return c;
    }

    private static String readKeyBoard(int limit, boolean blankReturn) {
        String line = "";

        while (scanner.hasNextLine()) {
            line = scanner.nextLine();
            if (line.length() == 0) {
                if (blankReturn) return line;
                else continue;
            }

            if (line.length() < 1 || line.length() > limit) {
                System.out.print("输入长度(不大于" + limit + ")错误,请重新输入:");
                continue;
            }
            break;
        }

        return line;
    }
}

package com.zzd.view;

import com.zzd.domain.Employee;
import com.zzd.domain.Programmer;
import com.zzd.service.NameListService;
import com.zzd.service.TeamException;
import com.zzd.service.TeamService;

public class TeamView {

    private NameListService ListSvc = new NameListService();
    private TeamService TeamSvc = new TeamService();


    public void enterMainMenu(){
        char menu = 0;
        boolean loopFlag = true;
        while (loopFlag){
            if (menu != '1') {
                listAllEmployee();
            }
            System.out.println("1-团队列表 2-添加团队成员 3-删除团队成员 4-退出 请选择1-4");
            menu = TSUtility.readMenuSelection();
            switch (menu){
                case '1':
                    getTeam();
                    break;
                case '2':
                    addMember();
                    break;
                case '3':
                    deleteMember();
                    break;
                case '4':
                    System.out.println("是否要退出?Y/N:");
                    char flag = TSUtility.readConfirmSelection();
                    if (flag == 'Y'){
                         loopFlag = false;
                    }
                    break;

            }
        }

    }
    /**
    *@Description 显示所有的员工信息
    *@Param 
    *@Return 
    *@Author pdzz
    *@Date 2019/9/12
    *@Time 10:49
    */
    private void listAllEmployee(){
        System.out.println("------------------------------开发调度软件---------------------------------\n");
        Employee[] Employees = ListSvc.getAllEmployees();
        if (Employees == null||Employees.length == 0){
            System.out.println("没有员工信息");
        }else {
            System.out.println("ID\t姓名\t年龄\t工资\t职位状态\t奖金\t股票\t领用设备");
            for (int i = 0;i < Employees.length;i++){
                System.out.println(Employees[i]);
            }
        }
        System.out.println("--------------------------------------------------------------------------  ");


    }
    private void getTeam(){
        System.out.println("查看开发团队成员");
        System.out.println("--------------------------团队成员--------------------------------\n");
        Programmer[] team = TeamSvc.getTeam();
        if (team == null||team.length == 0){
            System.out.println("没有团队员工信息");
        }else {
            System.out.println("TID/ID\t姓名\t年龄\t工资\t职位状态\t奖金\t股票\n");
            for (int i = 0; i < team.length; i++) {
                System.out.println(team[i].getDetailsForTeam());

            }
        }
    }

            private void addMember () {
                System.out.println("------------------添加团队成员----------------");
                System.out.println("请输入需要添加的成员ID:");
                int id = TSUtility.readInt();
                try {
                    Employee emp = ListSvc.getEmployee(id);
                    TeamSvc.addMember(emp);
                    System.out.println("添加成功");
                } catch (TeamException e1) {
                    System.out.println("添加失败,原因:" + e1.getMessage());
                }
                TSUtility.readReturn();
            }
            private void deleteMember () {
                System.out.println("-----------------------删除团队成员-----------------------");
                System.out.println("请输入要删除员工的TID");
                int TID = TSUtility.readInt();
                System.out.println("是否确认删除:Y/N");
                char isconfim = TSUtility.readConfirmSelection();
                if (isconfim == 'N')  return;
                try {
                    TeamSvc.removeMember(TID);
                    System.out.println("删除成功");
                } catch (TeamException e) {
                    System.out.println("删除失败,原因:" + e.getMessage());
                }
                TSUtility.readReturn();
            }

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

        }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值