Collections.sort() 和通过添加到 TreeSet 中获取已排序集合之间的区别?
2022-09-04 19:38:48
Set<Student> ts = new TreeSet<Student>();
for(Student s : studentInfo){
ts.add(s);
}
System.out.println(ts);
我已经在我的一个案例块中写了上面的这个片段,以便对学生对象的集合进行排序。我的问题是:使用这种方法和使用方法有什么区别。Collections.sort();