2015. 1. 14. 20:41
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
package Collections;
import java.util.Collections;
import java.util.Vector;
public class Swap00 {
public static void main(String[] args){
Vector<String> v=new Vector<String>();
v.add("1");
v.add("2");
v.add("3");
v.add("4");
v.add("oracle.com");
System.out.println(v);
Collections.swap(v,0,4);
System.out.println(v);
}
}
'Java' 카테고리의 다른 글
BufferedInputStream (0) | 2015.01.16 |
---|---|
ProcessBuilder : start() (0) | 2015.01.14 |
Collections : reverseOrder() (0) | 2015.01.14 |
Java Streams - Java Stream Introduction (0) | 2015.01.14 |
ShowThread (0) | 2015.01.14 |