Skip to content

Instantly share code, notes, and snippets.

@saqibmehmoodgit
Last active August 30, 2018 05:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save saqibmehmoodgit/7a6f8b5313c2950bb290cce628462728 to your computer and use it in GitHub Desktop.
Save saqibmehmoodgit/7a6f8b5313c2950bb290cce628462728 to your computer and use it in GitHub Desktop.
@Override
public int compareTo(Student s) {
if (age == s.age)
{
return 0;
}
else if (age > s.age)
{
return 1;
}
else
{
return -1;
}
}
///////////////////////
else if (age < s.age)
{
return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment