内部类List排序


List<A> as = new ArrayList<A>();

Collections.sort(as,new Comparator<A>() {

                public int compare( A arg0, A arg1) {
                    return arg0. getId().compareTo(arg1. getId());
                }
            });

你可能感兴趣的:(list排序)