Sorting Collections and Arrays : Collections « Utility Classes « SCJP

Home
SCJP
1.Java Source And Data Type
2.Operators
3.Modifiers
4.Type Casting
5.Statements
6.Object Oriented
7.Thread
8.Utility Classes
9.File
SCJP » Utility Classes » Collections 
8.12.3.Sorting Collections and Arrays
import java.util.ArrayList;
import java.util.Collections;

public class MainClass {
  public static void main(String[] args) {
    ArrayList<String> stuff = new ArrayList<String>()// #1
    stuff.add("A");
    stuff.add("B");
    stuff.add("D");
    stuff.add("A");
    stuff.add("W");
    System.out.println("unsorted " + stuff);
    Collections.sort(stuff)// #2
    System.out.println("sorted   " + stuff);
  }
}
unsorted [A, B, D, A, W]
sorted   [A, A, B, D, W]
8.12.Collections
8.12.1.Java Collections
8.12.2.Make List a Thread-Safe Class
8.12.3.Sorting Collections and Arrays
8.12.4.Return a reference to a new Map that accesses the existing data but with synchronized methods
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.