91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java實現員工管理系統

發布時間:2020-09-16 19:52:11 來源:腳本之家 閱讀:150 作者:SleepException 欄目:編程語言

本文實例為大家分享了Java實現員工管理系統的具體代碼,供大家參考,具體內容如下

本系統主要練習到的相關內容:

1、 流程控制語句
2、 類、對象
3、 封裝、繼承、多態
4、 方法的重載、重寫
5、 訪問修飾符
6、 static

需求說明:

員工信息的基本情況
—————————普通員工—————————–
屬性:員工編號、員工姓名、員工職務、請假天數、基本工資
普通員工工資:
在基本工資的基礎上增加10%的工作餐,50%的崗位補助,200元住房補助
基本工資+基本工資*0.1+基本工資*0.5+200
—————————–經理——————————–
屬性:員工編號、員工姓名、員工職務、請假天數、基本工資
經理工資:
在基本工資的基礎上增加20%的工作餐,50%的崗位補助,500元住房補助
基本工資+基本工資*0.2+基本工資*0.5+500
——————————-董事——————————–
屬性:員工編號、員工姓名、員工職務、請假天數、基本工資
董事工資:
在基本工資的基礎上增加8%的工作餐,30%的崗位補助,2000元住房補助,3000元投資補助
基本工資+基本工資*0.08+基本工資*0.3+2000+3000
——————————–其他———————————
工資扣除部分,所有員工都一樣
無請假,基本工資全發,有請假,扣除每天平均工資 * 請假天數

大體設計思路:

Java實現員工管理系統

員工父類一個,普通員工,經理,董事長子類各一個,分別重寫父類的工資方法。最后一個測試類。
實現后界面如圖:

Java實現員工管理系統

父類子類的編寫沒什么問題,注意盡量做好封裝,屬性最好用private修飾。小編偷了個懶,主要把時間用在測試類的編寫上o( ̄ε ̄*)o。
注意:由于本系統只是將對象存于對象數組,數組初始化時定長設定為100,系統會自動初始化每個數組元素為null,所以在寫測試類的方法時一定注意寫好判斷預防遍歷賦值發生的空指針錯誤,小編比較笨,所以饒了好一會才寫出來(¬_¬)
還有就是如果更改員工的資料時注意,若是員工的職位發生變化該怎么處理,畢竟對象變了,處理工資的方法也不一樣。

以下貼出代碼:

首先是父類Employee

//父類
public class Employee {
 String ID;
 String name;
 String position;
 int holiday;
 double salary;
 public Employee(){}
 public void sumSalary(){}
 public void display(){
  System.out.println("ID:"+ID+",姓名:"+name+",職位:"+position+",請假天數:"+holiday+",工資:"+salary);
 }
}

三個子類:

public class CommonEmployee extends Employee{
 @Override
 public void sumSalary(){
  super.salary=super.salary+super.salary*0.1+super.salary*0.5+200-super.holiday*(super.salary/30);
 }
}
public class Manager extends Employee{
 @Override
 public void sumSalary(){
  super.salary=super.salary+super.salary*0.2+super.salary*0.5+200-super.holiday*(super.salary/30);
 }
}
public class Director extends Employee{
 @Override
 public void sumSalary(){
  super.salary=super.salary+super.salary*0.08+super.salary*0.3+2000+3000-super.holiday*(super.salary/30);
 }
}

接下來就是關鍵的測試類,這里完成增刪改查== 有點多。

public class TestEMD {
 static Scanner sc = new Scanner(System.in);
 static Employee[] em = new Employee[100];

 public static void caoZuo() {
  System.out.println("----  工資管理系統     ----");
  System.out.println("-------------------------------");
  System.out.println("---  1  增加      ---");
  System.out.println("---  2  刪除      ---");
  System.out.println("---  3  修改      ---");
  System.out.println("---  4  查詢      ---");
  System.out.println("---  0  退出      ---");
  System.out.println("-------------------------------");
  System.out.println("請輸入你要選擇的操作:");
  Scanner sc = new Scanner(System.in);
  String s = sc.next();
  switch (s) {
  case "1":
   addEmployee();
   break;
  case "2":
   delEmployee();
   break;
  case "3":
   updateEmployee();
   break;
  case "4":
   queryEmployee();
   break;
  case "0":
   System.out.println("謝謝使用O(∩_∩)O");
   break;
  default:
   System.out.println("指令錯誤請重新輸入!");
   caoZuo();
   break;
  }
 }

 public static void addEmployee() {
  System.out.println("------增加員工------");
  System.out.println("請輸入相關信息:");
  System.out.print("ID:");
  String id = sc.next();
  System.out.print("姓名:");
  String name = sc.next();
  System.out.print("職務:");
  String position = sc.next();
  System.out.print("請假天數:");
  int holiday = sc.nextInt();
  System.out.print("基本工資:");
  double salary = sc.nextDouble();
  switch (position) {
  case "普通員工":
   Employee a = new CommonEmployee();
   a.ID = id;
   a.name = name;
   a.position = "普通員工";
   a.holiday = holiday;
   a.salary = salary;
   a.sumSalary();
   for (int i = 0; i < 100; i++) {
    if (em[i] == null) {
     em[i] = a;
     System.out.println("添加成功!");
     em[i].display();
     break;
    } else {
     continue;
    }
   }
   break;
  case "經理":
   Employee b = new Manager();
   b.ID = id;
   b.name = name;
   b.position = "經理";
   b.holiday = holiday;
   b.salary = salary;
   b.sumSalary();
   for (int i = 0; i < 100; i++) {
    if (em[i] == null) {
     em[i] = b;
     System.out.println("添加成功!");
     em[i].display();
     break;
    } else {
     continue;
    }
   }
   break;
  case "董事長":
   Employee c = new Director();
   c.ID = id;
   c.name = name;
   c.position = "董事長";
   c.holiday = holiday;
   c.salary = salary;
   c.sumSalary();
   for (int i = 0; i < 100; i++) {
    if (em[i] == null) {
     em[i] = c;
     System.out.println("添加成功!");
     em[i].display();
     break;
    } else {
     continue;
    }
   }
   break;
  default:
   System.out.println("不存在此職務,請重新輸入!");
   addEmployee();
   break;
  }
  caoZuo();
 }

 public static void delEmployee() {
  System.out.println("----------刪除員工---------");
  System.out.println("請輸入員工姓名:");
  String n = sc.next();
  for (int i = 0; i < 100; i++) {
   if (em[i] != null) {
    if (em[i].name.equals(n)) {
     System.out.println("你要刪除的是:" + em[i].toString());
     System.out.println("你確定要刪除嗎?\n [Y]確定,[N]取消");
     String s = sc.next();
     if (s.equals("y")) {
      em[i] = null;
      System.out.println("刪除成功!");
      try {
       Thread.sleep(2000);
      } catch (InterruptedException e) {
       // TODO Auto-generated catch block
       e.printStackTrace();
      }
      caoZuo();
     } else if (s.equals("n")) {
      caoZuo();
     } else {
      System.out.println("輸入指令不正確,請重新輸入!");
      delEmployee();
     }
    } else {
     if (i != 99) {
      continue;
     } else {
      System.out.println("你輸入的賬號不存在!請重新輸入!");
      delEmployee();
     }

    }
   } else {
    if (i != 99) {
     continue;
    } else {
     System.out.println("你輸入的賬號不存在!請重新輸入!");
     delEmployee();
    }
   }
  }
 }

 public static void updateEmployee() {
  System.out.println("--------------修改員工資料-------------");
  System.out.println("請輸入你要修改的姓名:");
  String s = sc.next();
  out: for (int i = 0; i < 100; i++) {
   if (em[i] != null) {
    if (em[i].name.equals(s)) {
     System.out.println("你要修改的是:");
     em[i].display();
     System.out.println("請重新輸入相關信息:");
     System.out.print("ID:");
     String id = sc.next();
     System.out.print("姓名:");
     String name = sc.next();
     System.out.print("職務:");
     String position = sc.next();
     System.out.print("請假天數:");
     int holiday = sc.nextInt();
     System.out.print("基本工資:");
     double salary = sc.nextDouble();
     switch (position) {
     case "普通員工":
      if (em[i].position.equals("普通員工")) {
       em[i].ID = id;
       em[i].name = name;
       em[i].position = position;
       em[i].holiday = holiday;
       em[i].salary = salary;
       em[i].sumSalary();
       System.out.println("修改成功!");
       em[i].display();
      } else {
       em[i] = null;
       Employee a = new CommonEmployee();
       a.ID = id;
       a.name = name;
       a.position = "普通員工";
       a.holiday = holiday;
       a.salary = salary;
       a.sumSalary();
       for (int j = 0; j < 100; j++) {
        if (em[j] == null) {
         em[j] = a;
         System.out.println("修改成功!");
         em[j].display();
         break;
        } else {
         continue;
        }
       }
      }
      break;
     case "經理":
      if (em[i].position.equals("經理")) {
       em[i].ID = id;
       em[i].name = name;
       em[i].position = position;
       em[i].holiday = holiday;
       em[i].salary = salary;
       em[i].sumSalary();
       System.out.println("修改成功!");
       em[i].display();
      } else {
       em[i] = null;
       Employee b = new Manager();
       b.ID = id;
       b.name = name;
       b.position = "經理";
       b.holiday = holiday;
       b.salary = salary;
       b.sumSalary();
       for (int j = 0; j < 100; j++) {
        if (em[j] == null) {
         em[j] = b;
         System.out.println("修改成功!");
         em[j].display();
         break;
        } else {
         continue;
        }
       }
      }
      break;
     case "董事長":
      if (em[i].position.equals("董事長")) {
       em[i].ID = id;
       em[i].name = name;
       em[i].position = position;
       em[i].holiday = holiday;
       em[i].salary = salary;
       em[i].sumSalary();
       System.out.println("修改成功!");
       em[i].display();
      } else {
       em[i] = null;
       Employee c = new Director();
       c.ID = id;
       c.name = name;
       c.position = "董事長";
       c.holiday = holiday;
       c.salary = salary;
       c.sumSalary();
       for (int j = 0; j < 100; j++) {
        if (em[j] == null) {
         em[j] = c;
         System.out.println("添加成功!");
         em[j].display();
         break;
        } else {
         continue;
        }
       }
      }
      break;
     default:
      System.out.println("不存在此職務,請重新輸入!");
      addEmployee();
      break;
     }

     try {
      Thread.sleep(2000);
     } catch (InterruptedException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
     }
     caoZuo();
    } else {
     if (i != 99) {
      continue out;
     } else {
      System.out.println("你輸入的員工不存在!請重新輸入!");
      caoZuo();
     }
    }
   } else {
    if (i != 99) {
     continue out;
    } else {
     System.out.println("你輸入的員工不存在!請重新輸入!");
     caoZuo();
    }
   }
  }
 }

 public static void queryEmployee() {
  System.out.println("--------------所有員工信息---------------");
  for (int i = 0; i < 100; i++) {
   if (em[i] != null) {
    em[i].display();
   }
  }
  try {
   Thread.sleep(2000);
  } catch (InterruptedException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
  caoZuo();
 }

 public static void main(String[] args) {
  // TODO Auto-generated method stub
  TestEMD.caoZuo();
 }

}

程序剛寫完就來發帖了,簡單測試并未發現什么問題,若是大家發現有什么不對的歡迎指正,謝謝啦。

更多學習資料請關注專題《管理系統開發》。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

略阳县| 长葛市| 黎城县| 北川| 广汉市| 亚东县| 山阴县| 内丘县| 新乐市| 元阳县| 临沂市| 长阳| 陆河县| 漯河市| 滦平县| 雷州市| 丹凤县| 通辽市| 沁阳市| 河池市| 江孜县| 兴和县| 呼和浩特市| 宝兴县| 武清区| 赞皇县| 称多县| 改则县| 江川县| 桃江县| 烟台市| 额尔古纳市| 鄂托克前旗| 新平| 盐源县| 岱山县| 嘉善县| 大洼县| 万宁市| 高清| 福贡县|