You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Number.java 229B

123456
  1. public class Number implements Comparable<Number> {
  2. private int i;
  3. public Number(int i) { this.i = i; }
  4. public int getValue() { return i;}
  5. public int compareTo(Number that) { return this.getValue() - that.getValue(); }
  6. }