Java第十二次作业
Posted MXT16
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java第十二次作业相关的知识,希望对你有一定的参考价值。
4、 Cola公司的雇员分为以下若干类:(知识点:多态) [必做题]
4.1 ColaEmployee :这是所有员工总的父类,属性:员工的姓名,员工的生日月份。方法:getSalary(int month) 根据参数月份来确定工资,如果该月员工过生日,则公司会额外奖励100 元。
4.2 SalariedEmployee : ColaEmployee 的子类,拿固定工资的员工。属性:月薪
4.3 HourlyEmployee :ColaEmployee 的子类,按小时拿工资的员工,每月工作超出160 小时的部分按照1.5 倍工资发放。属性:每小时的工资、每月工作的小时数
4.4 SalesEmployee :ColaEmployee 的子类,销售人员,工资由月销售额和提成率决定。属性:月销售额、提成率
4.5 定义一个类Company,在该类中写一个方法,调用该方法可以打印出某月某个员工的工资数额,写一个测试类TestCompany,在main方法,把若干各种类型的员工放在一个ColaEmployee 数组里,并单元出数组中每个员工当月的工资。
1 package boke6月12日; 2 3 public class ColaEmployee { 4 protected String name; 5 protected int month; 6 7 public ColaEmployee() { 8 super(); 9 10 } 11 12 public ColaEmployee(String name, int month) { 13 super(); 14 this.name = name; 15 this.month = month; 16 } 17 18 public String getName() { 19 return name; 20 } 21 22 public void setName(String name) { 23 this.name = name; 24 } 25 26 public int getMonth() { 27 return month; 28 } 29 30 public void setMonth(int month) { 31 this.month = month; 32 } 33 34 public double getSalary(int month) { 35 return 0; 36 37 } 38 39 }
1 package boke6月12日; 2 3 public class SalariedEmployee extends ColaEmployee { 4 double monSalary;// 月薪 5 6 public SalariedEmployee() { 7 super(); 8 9 } 10 11 public SalariedEmployee(String name, int month, double monSalary) { 12 super(name, month); 13 this.monSalary = monSalary; 14 15 } 16 17 public double getSalary(int month) { 18 if (super.getMonth() == month) { 19 return monSalary + 100; 20 } else { 21 return monSalary; 22 } 23 } 24 }
1 package boke6月12日; 2 3 public class HourlyEmployee extends ColaEmployee { 4 int hourSalary;// 时薪 5 int hourNum;// 每月工作的小时数 6 7 public HourlyEmployee() { 8 super(); 9 10 } 11 12 public HourlyEmployee(String name, int month, int hourSalary, int hourNum) { 13 super(name, month); 14 this.hourSalary = hourSalary; 15 this.hourNum = hourNum; 16 } 17 18 public double getSalary(int month) { 19 if (super.getMonth() > month) { 20 if (hourNum > 160) { 21 return hourSalary * 160 + hourSalary * (hourNum - 160) * 1.5 22 + 100; 23 } else { 24 return hourSalary * hourNum + 100; 25 26 } 27 } else { 28 if (hourNum > 160) { 29 return hourSalary * 160 + hourSalary * (hourNum - 160) * 1.5; 30 } else { 31 return hourSalary * hourNum; 32 33 } 34 } 35 } 36 37 }
1 package boke6月12日; 2 3 public class SalesEmployee extends ColaEmployee { 4 int monthSales;// 月销售额 5 double royaltyRate;// 提成率 6 7 public SalesEmployee() { 8 super(); 9 10 } 11 12 public SalesEmployee( String name,int month, int monthSales, 13 double royaltyRate) { 14 super(name, month); 15 this.monthSales = monthSales; 16 this.royaltyRate = royaltyRate; 17 } 18 19 public double getSalary(int month) { 20 if (super.getMonth() == month) { 21 return monthSales * royaltyRate + 100; 22 } else { 23 return monthSales * royaltyRate; 24 } 25 } 26 27 }
1 package boke6月12日; 2 3 public class Company { 4 public void getSalary(ColaEmployee c, int month) { 5 System.out.println(c.name + "在" + month + "月的月薪为" + c.getSalary(month) 6 + "元"); 7 } 8 9 }
1 package boke6月12日; 2 3 public class TestCompany { 4 5 /** 6 * @param args 7 */ 8 public static void main(String[] args) { 9 // 创建、初始化数组 10 ColaEmployee[] cel = { 11 new SalariedEmployee("salariedEmployee", 6, 30000),// name,month,月薪 12 new HourlyEmployee("hourlyEmployee", 5, 100, 300),// name,month,时薪,小时数 13 new SalesEmployee("salesEmployee", 3, 500000, 0.3) // name,month,月销售额,提成率 14 }; 15 // 数组遍历 16 for (int i = 0; i < cel.length; i++) { 17 new Company().getSalary(cel[i], 10); 18 } 19 20 } 21 22 }
5、利用接口实现动态的创建对象[选做题]
5.1 创建4个类:
苹果
香蕉
葡萄
园丁
5.2 在三种水果的构造方法中打印一句话.
以苹果类为例
class apple
{
public apple()
{
System.out.println(―创建了一个苹果类的对象‖);
}
}
类图如下:
5.3 要求从控制台输入一个字符串,根据字符串的值来判断创建三种水果中哪个类的对象
1 package boke6月12日; 2 3 import java.util.Scanner; 4 5 public interface Fruit { 6 7 } 8 9 class Apple implements Fruit { 10 public Apple() { 11 System.out.println("创建了一个苹果对象"); 12 } 13 } 14 15 class Banana implements Fruit { 16 public Banana() { 17 System.out.println("创建了一个香蕉对象"); 18 } 19 } 20 21 class Putao implements Fruit { 22 public Putao() { 23 System.out.println("创建了一个葡萄对象"); 24 } 25 } 26 27 class Gardener { 28 public Fruit create() { 29 Fruit f = null; 30 Scanner input = new Scanner(System.in); 31 String name = input.next(); 32 if (name.equals("苹果")) { 33 f = new Apple(); 34 } else if (name.equals("香蕉")) { 35 f = new Banana(); 36 } else if (name.equals("葡萄")) { 37 f = new Putao(); 38 } else { 39 System.out.println("不会种"); 40 } 41 return f; 42 43 } 44 }
1 package boke6月12日; 2 3 public class Test3 { 4 5 /** 6 * @param args 7 */ 8 public static void main(String[] args) { 9 Gardener g = new Gardener(); 10 g.create(); 11 12 } 13 14 }
以上是关于Java第十二次作业的主要内容,如果未能解决你的问题,请参考以下文章