Question: Write an Java employee class with age, firstName, lastName, and pay characteristics. This class must implement Comparable interface and define compareTo method. Compare the employees

Write an Java employee class with age, firstName, lastName, and pay characteristics. This class must implement Comparable interface and define compareTo method. Compare the employees according to their ages. Make sure that the following code proints the employess based on their age (smallest age to largest):

public static void main(String[] args){

Employee[] e = {new Employee(50), new Employee(25), new Employee(66)};

Arrays.sort(e);

for(Employee a: e)

System.out.println(a);

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!