The Java Developers Almanac 1.4


Order this book from Amazon.

   
Home > List of Packages > java.util  [50 examples] > Arrays  [5 examples]

e341. Converting an Array to a Collection

    // Fixed-size list
    List list = Arrays.asList(array);
    
    // Growable list
    list = new LinkedList(Arrays.asList(array));
    
    // Duplicate elements are discarded
    Set set = new HashSet(Arrays.asList(array));

 Related Examples
e338. Comparing Arrays
e1072. Filling Elements in an Array
e339. Shuffling the Elements of a List or Array
e340. Converting a Collection to an Array

See also: Bits    Collections    Dates    Hash Tables    Lists    Property Files    Sets    Sorted Collections    Time    Timers   


© 2002 Addison-Wesley.