Java/중요클래스

LinkedList 클래스 사용

Bohemian life 2012. 4. 11. 22:48
package com.list;//LinkedList 사용(속도가 좀 느림)

import java.util.LinkedList;

public class LinkedListTest {
	public static void main(String[] args) {
		LinkedList<string> myQue = new LinkedList<string>();

		myQue.offer("1-자바");
		myQue.offer("2-C++");
		myQue.offer("3-API");
		myQue.offer("4-MFC");
		while(myQue.peek() != null)
			System.out.println(myQue.poll());
	}

}

1-자바

2-C++
3-API
4-MFC