4
Qual é a diferença entre Collections.emptyList () e Collections.EMPTY_LIST
Em Java, temos Collections.emptyList () e Collections.EMPTY_LIST . Ambos têm a mesma propriedade: Retorna a lista vazia (imutável). Esta lista é serializável. Então, qual é a diferença exata entre usar um ou outro?
105
java
list
collections