abstract class PayRoll
{
List<String> nm=new ArrayList<String>();
List<String> id=new ArrayList<String>();
List<String> dob=new ArrayList<String>();
}
class Employee extends PayRoll implements PayEmpInt
{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
int n;
String ename,eid,birth,pr_id;
public void addEmployee()
{
try
{
System.out.print("\nEnter the number\t :");
n=Integer.parseInt(br.readLine());
for(int i=0;i<n;i++)
{
System.out.print("\nEnter Employee name\t :");
ename=br.readLine();
System.out.print("\nEnter the Employee ID\t :");
eid=br.readLine();
System.out.print("\nEnter the D.O.B(mm-dd-yyy)\t :");
birth=br.readLine();
nm.add(ename);
id.add(eid);
dob.add(birth);
}
}
catch(IOException e)
{
System.out.print("\nError while handling the Input. "+e);
}
}
class Project extends Employee
{
public void display()
{
System.out.print("\nName\t\tID\t\tDOB");
for(int i=0;i<id.size();i++)
System.out.println(nm.get(i)+"\t"+id.get(i)+"\n"+dob.get(i));
}
}
import java.io.*;
class PayMain
{
public static void main(String args[])throws IOException
{
int ch;
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
while(true)
{
System.out.println("\nOptions:\n\t1. Employee DB\n\t2. Projects\n\t3. Exit");
ch=Integer.parseInt(br.readLine());
switch(ch)
{
case 1:
Employee e=new Employee();
e.addEmployee();
System.out.print("\nEMPLOYEE LIST");
e.employeeDetails();
break;
case 2:
Project p=new Project();
p.display();
break;
case 3:
System.exit(0);
}
}
}
}
我可以从主类调用addEmployee方法。添加员工后,当我尝试调用方法显示(出现在Project中)时,它不会打印List的内容。
我不知道为什么Project无法访问其父类Employee中存在的List的值。
编辑: 添加了主类。问题是我使用addEmployee方法添加新员工,employeeDetails完美地显示所有内容。但是当我调用p.search()时,它不会显示除NAME ID DOB之外的任何内容。
注意: 并原谅我的奇怪设计。我是Java的新手。我正在做一个关于员工管理系统的小型项目(不使用任何数据库软件)。所以建议我如何设计它。谢谢!
答案 0 :(得分:1)
我需要看看你的主要方法。当我跑我的主要时:
public static void main(String[] args) {
Project aProject = new Project();
aProject.addEmployee();
aProject.display();
}
我得到以下输出(带有我的样本输入):
输入数字:2
输入员工姓名:bob
输入员工ID:123
输入D.O.B(mm-dd-yyy):01-01-2222
输入员工姓名:alice
输入员工ID:234
输入D.O.B(mm-dd-yyy):04-44-4444
名称ID DOBbob 123 2222年1月1日 爱丽丝234 04-44-4444
您需要确保在同一个对象上调用方法。
此外,您可能希望将addEmployee方法更新为addEmployees,因为它会提示您输入要添加的数字。
答案 1 :(得分:0)
抽象类Payroll的字段没有修饰符,这意味着它们只能由同一个包中的类访问。它们应该是protected
。或者,如果合适的话,提供public
吸气剂。 (我在这里说不)
我同意其他人认为这种架构很奇怪。