new Comparator<Student>(){
public int compare(Student o1, Student o2) {
   return o1.store - o2.store;
}
};