public class Ex_TreeSet{
public static void main(String args[]){
HashSet hs = new HashSet();
hs.add("SCJP");
hs.add("SCWCD");
hs.add("SCBCD");
hs.add("SCMCD");
TreeSet ts = new TreeSet(hs);
Iterator it = ts.iterator();
while(it.hasNext()){
String data = (String) it.next();
System.out.println(data+" ");
}
}
}
來自: 猛虎出閘
沒有留言:
張貼留言