我正在尝试自己学习arraylist的用法,但遇到了一个难题:
我有3个班级,一个父亲抽象班级有2个孩子,这些班级的实例存储在主程序的数组列表中,我的目标是基本上“提高”雇员实例(派递员)的薪水或商用),方法是从控制台检索用户输入并将该输入与我的arraylist具有的所有实例的相应属性进行比较,例如:
我想提高$ 300或给送货员一个实例
用户输入名称“ george”>(我需要搜索名称中包含乔治的实例),并在该实例上使用isPlus和setPlus方法。 (所有类的所有属性和字符串都有对应的getter和setter)。
我不知道该怎么做或实现,因为我是arraylist用法的新手,所以我没有尝试过的背景知识
班级员工
public abstract class Employee {
private static final int PLUS = 300;
private static final int EMPLOYEEQTY = 3;
protected String name;
protected int age;
protected double salary;
public Employee(String name, int age, double salary) {
this.name = name;
this.age = age;
this.salary = salary;
}
}
商业级
public class Commercial extends Employee{
private double comission;
public Commercial(String name, int age, double salary, double comission) {
super(name, age, salary);
this.comission = comission;
}
@Override
public boolean isPlus() {
if (this.comission > 200 && this.age > 30) {
return true;
}else {
return false;
}
}
@Override
public double setPlus() {
if (isPlus() == true) {
return this.salary+getPlus();
}
return salary;
}
}
Class DeliveryMan
public class DeliveryMan extends Employee{
private String zone;
public DeliveryMan(String name, int age, double salary, String zone) {
super(name, age, salary);
this.zone = zone;
}
@Override
public boolean isPlus() {
if (this.zone.equalsIgnoreCase("zona 3") && this.age > 25) {
return true;
}
return false;
}
@Override
public double setPlus() {
if (isPlus() == true) {
return salary+getPlus();
}
return salary;
}
}
班级计划
public class Program {
public static void main(String[] args) {
String name,zone,opt;
Integer age;
Double salary,comission;
ArrayList<Employee> al = new ArrayList<>();
Scanner sc = new Scanner(System.in);
for (int i = 0; i < Employee.getEmployeeqty(); i++) {
System.out.println("Ingrese el nombre del empleado: ");
name = sc.next();
System.out.println("Ingrese la edad del empleado: ");
age = sc.nextInt();
System.out.println("Ingrese el salario del empleado: ");
salary = sc.nextDouble();
System.out.println("Es el empleado un Repartidor o un Comercial?");
opt = sc.nextLine();
switch (opt.toLowerCase()) {
case "repartidor":
System.out.println("Ingrese la zona del repartidor: (ej: zona 3)");
zone = sc.nextLine().toLowerCase();
al.add(new DeliveryMan(name, age, salary, zone));
break;
case "comercial":
System.out.println("Ingrese la cantidad de la comision del comercial: ");
comission = sc.nextDouble();
al.add(new Commercial(name, age, salary, comission));
break;
default: System.out.println("Opcion ingresada no es valida, por favor, indique si es un repartidor o un comercial.");
}
}
}
}
答案 0 :(得分:1)
遍历arraylist。
借助equals方法比较名称,从arraylist中获取对象。
更新对象。 将更新的对象插入arraylist
ArrayList<Employee> al = new ArrayList<>();
for(int i = 0 ; i < al.size() ; i++){
if((al.get(i).name).equals(user_input_name)){
al.salary(i) = al.salary+increment_salary;
}
}