Collections.emptyList
经常在代码中使用Collections.emptyList或者Collections.emptySet等方法来表示一个空的列表。今天使用的时候出现了一个unSupportException,原因是我理所当然的认为emptyList方法相当于...
经常在代码中使用Collections.emptyList或者Collections.emptySet等方法来表示一个空的列表。今天使用的时候出现了一个unSupportException,原因是我理所当然的认为emptyList方法相当于...
第一种方法,就是list中对象实现Comparable接口 public class Person implements Comparable<Person> { private String name; private Int...