6
Il modo più conciso per convertire un Set <T> in un Elenco <T>
Ad esempio, attualmente sto facendo questo: Set<String> setOfTopicAuthors = .... List<String> list = Arrays.asList( setOfTopicAuthors.toArray( new String[0] ) ); Riesci a battere questo?
201
java
list
collections
set
jdk1.6