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

'Java > 중요클래스' 카테고리의 다른 글

HashSet 클래스로 로또 만들기  (0) 2012.04.11
Set 인터페이스  (0) 2012.04.11
Stack의 구조  (0) 2012.04.11
Enumeration 인터페이스 사용법  (0) 2012.04.11
ArrayList클래스 사용하여 뒤에서부터 제거  (0) 2012.04.11

+ Recent posts