Given:
class Human implements Comparable<Human> {
private double age;
public Human(double age) { this.age = age; }
}
Human allison = new Human(16);
Human karen = new Human(14);
If the older Human is considered "bigger", then allison.compareTo(karen) should return this |