Java 8 : Functional Interface
Comparable
public class Employee implements Comparable<Employee> {
private String name;
private float salary;
public Employee(String name, float salary) {
this.name = name;
this.salary = salary;
}
@Override
p...
bikash8848.hashnode.dev4 min read