22 lines
533 B
Java
22 lines
533 B
Java
public class Employee5 {
|
|
String name;
|
|
int employeeID;
|
|
protected int salary;
|
|
|
|
public Employee5(String name, int employeeID) {
|
|
this.name = name;
|
|
this.employeeID = employeeID;
|
|
}
|
|
|
|
public Employee5(String name, int employeeID, int salary) {
|
|
this.name = name;
|
|
this.employeeID = employeeID;
|
|
this.salary = salary;
|
|
}
|
|
|
|
public String toString() {
|
|
return "Name: " + name + ", Employee ID: "
|
|
+ employeeID + ", Salary: " + salary;
|
|
}
|
|
}
|