Ecco un tutorial sull'ordinazione di oggetti:
Anche se fornirò alcuni esempi, consiglierei di leggerlo comunque.
Esistono vari modi per ordinare un file ArrayList
. Se vuoi definire un ordinamento naturale (predefinito) , devi lasciare implementare . Supponendo che si desideri ordinare per impostazione predefinita , quindi fare (nullcheck omessi per semplicità):Contact
Comparable
name
public class Contact implements Comparable<Contact> {
private String name;
private String phone;
private Address address;
public int compareTo(Contact other) {
return name.compareTo(other.name);
}
// Add/generate getters/setters and other boilerplate.
}
in modo che tu possa semplicemente fare
List<Contact> contacts = new ArrayList<Contact>();
// Fill it.
Collections.sort(contacts);
Se desideri definire un ordinamento controllabile esterno (che sostituisce l'ordine naturale), devi creare un Comparator
:
List<Contact> contacts = new ArrayList<Contact>();
// Fill it.
// Now sort by address instead of name (default).
Collections.sort(contacts, new Comparator<Contact>() {
public int compare(Contact one, Contact other) {
return one.getAddress().compareTo(other.getAddress());
}
});
Puoi persino definire i messaggi di posta Comparator
elettronica in Contact
sé in modo da poterli riutilizzare invece di ricrearli ogni volta:
public class Contact {
private String name;
private String phone;
private Address address;
// ...
public static Comparator<Contact> COMPARE_BY_PHONE = new Comparator<Contact>() {
public int compare(Contact one, Contact other) {
return one.phone.compareTo(other.phone);
}
};
public static Comparator<Contact> COMPARE_BY_ADDRESS = new Comparator<Contact>() {
public int compare(Contact one, Contact other) {
return one.address.compareTo(other.address);
}
};
}
che può essere utilizzato come segue:
List<Contact> contacts = new ArrayList<Contact>();
// Fill it.
// Sort by address.
Collections.sort(contacts, Contact.COMPARE_BY_ADDRESS);
// Sort later by phone.
Collections.sort(contacts, Contact.COMPARE_BY_PHONE);
E per ottenere il massimo, potresti considerare di utilizzare un generico comparatore javabeano :
public class BeanComparator implements Comparator<Object> {
private String getter;
public BeanComparator(String field) {
this.getter = "get" + field.substring(0, 1).toUpperCase() + field.substring(1);
}
public int compare(Object o1, Object o2) {
try {
if (o1 != null && o2 != null) {
o1 = o1.getClass().getMethod(getter, new Class[0]).invoke(o1, new Object[0]);
o2 = o2.getClass().getMethod(getter, new Class[0]).invoke(o2, new Object[0]);
}
} catch (Exception e) {
// If this exception occurs, then it is usually a fault of the developer.
throw new RuntimeException("Cannot compare " + o1 + " with " + o2 + " on " + getter, e);
}
return (o1 == null) ? -1 : ((o2 == null) ? 1 : ((Comparable<Object>) o1).compareTo(o2));
}
}
che puoi usare come segue:
// Sort on "phone" field of the Contact bean.
Collections.sort(contacts, new BeanComparator("phone"));
(come puoi vedere nel codice, i campi eventualmente nulli sono già coperti per evitare NPE durante l'ordinamento)