-
14. etc - (8) QueueDemo (queue.offer)java/코드 리뷰 2020. 4. 24. 13:39123456789101112131415161718192021222324252627282930313233343536package etc;import java.util.LinkedList;public class QueueDemo {public static void main(String[] args) {// LinkedList는 Queue 인터페이스의 구현클래스이기도 함LinkedList<String> queue = new LinkedList<String>();// Queue의 구현객체(LinkedList)에 값 저장queue.offer("이순신");queue.offer("김유신");queue.offer("강감찬");while(!queue.isEmpty()) {System.out.println(queue);System.out.println("poll -> " + queue.poll());}if (queue.isEmpty()) {System.out.println(queue);}// Queue의 구현객체(LinkedList)에서 값 꺼내기// System.out.println(queue);// System.out.println("poll -> " + queue.poll());// System.out.println(queue);// System.out.println("poll -> " + queue.poll());// System.out.println(queue);// System.out.println("poll -> " + queue.poll());// System.out.println(queue);}}
'java > 코드 리뷰' 카테고리의 다른 글
14. etc - (10) PropertiesDemo (파일 설정 프로그램) (0) 2020.04.24 14. etc - (9) StackDemo (stack.add) (0) 2020.04.24 14. sort - (7) CommonUtils Demo (상수) (0) 2020.04.24 14. sort - (6) SortDemo5 (익명객체로 비교기 작성) (0) 2020.04.24 14. sort - (5) SortDemo4 (ArrayList 객체 출력) (0) 2020.04.24