Skip to content

Instantly share code, notes, and snippets.

@rkhmelyuk
Created August 4, 2011 09:37
Show Gist options
  • Save rkhmelyuk/1124850 to your computer and use it in GitHub Desktop.
Save rkhmelyuk/1124850 to your computer and use it in GitHub Desktop.
class Person implements Comparable<Person> {
String firstName
String lastName
int age
int compareTo(Person other) {
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment