30/09/2018, 18:47

sắp xếp arrlist trong JAVA

  • chuyện thế này các bác ạ:

  • em có 1 arrlist chứa kiểu dữ liệu là 1 class student, em muốn sắp xếp tên theo từ diển mà không được các bác giúp em với nó báo lỗi.
    -public static void sortedStudent(ArrayList liStudentColleges) {

      Collections.sort(liStudentColleges, new Comparator<String>() {
      	@Override
      	public int compare(String s1, String s2) {
      		
      		return s1.compareToIgnoreCase(s2); 
    
  • các bác giúp em với em cám ơn!

Gió viết 21:02 ngày 30/09/2018

List student thì Conparator< Student> mới dc

long viết 20:49 ngày 30/09/2018

em thử rồi k đc bác ạ
em sủa thành thế này đc k bác:
public static void sortedStudent(ArrayList liStudentColleges) {

	Collections.sort(liStudentColleges, new Comparator<studentCollege>() {
		@Override
		public int compare(studentCollege o1, studentCollege o2) {
			// TODO Auto-generated method stub
			return o1.getName().compareToIgnoreCase(o2.getName());

			
		}
	});
}
Bài liên quan
0