일반 java.util.Queue

황제낙엽 2022.04.06 11:35 조회 수 : 8612

sitelink1 https://blog.naver.com/rhrudwnszoq/222626952478 
sitelink2 https://docs.oracle.com/javase/8/docs/ap...Queue.html 
sitelink3  
sitelink4  
sitelink5  
sitelink6  

import java.util.LinkedList;

import java.util.Queue;

 

ublic class CacheEngine {

        public static void main(String[] args) { 

            Queue<Integer> queue = new LinkedList<>(); 

            for (int i = 1; i <= 10 ; i++) { 

                queue.offer (i); // input 

                System.out.println("Queue :" + queue); 

            } 

            // 1. 무한 루프 돌리기 

            // poll() 가장 첫번째로 입력한 데이터부터 반환 

            while (!queue.isEmpty()) { //비어있지 않으면 안일어난거임 

                System.out.println("POLL:" + queue.poll()); 

                System.out.println("QUEUE: " + queue); 

                } 

            }

        }

}

 

 

 

[Method]

 

boolean add(E e) - 넣기

Inserts the specified element into this queue if it is possible to do so immediately without violating capacity restrictions, returning true upon success and throwing an IllegalStateException if no space is currently available.

 

E remove() - 꺼내기

Retrieves and removes the head of this queue.

 

E element() - 확인하기

Retrieves, but does not remove, the head of this queue.

 

boolean offer(E e) - 넣기, 넣을 공간이 부족하면 false 반환 

Inserts the specified element into this queue if it is possible to do so immediately without violating capacity restrictions.

 

E poll() - 꺼내기, 꺼낼 대상이 없으면 null 반환

Retrieves and removes the head of this queue, or returns null if this queue is empty.

 

E peek() - 확인하기. 확인할 데이터가 없으면 null 반환 

Retrieves, but does not remove, the head of this queue, or returns null if this queue is empty.

 

 

 

image.png

 

번호 제목 글쓴이 날짜 조회 수
343 어떤 multi-part 설정도 제공되지 않았기 때문에, part들을 처리할 수 없습니다. file 황제낙엽 2023.08.23 1260
342 (Bard) the request was rejected because no multipart boundary was found file 황제낙엽 2023.08.23 643
341 (Bard) multipart/form-data 요청 처리를 위한 MultipartHttpServletRequest file 황제낙엽 2023.08.21 507
340 [JsonNode] depth 가 여러 단계인 json data 내부를 조회하는 java code 예제 (from Bard) file 황제낙엽 2023.08.09 961
339 JPA 개요 황제낙엽 2023.07.25 626
338 javax.mail 샘플 몇가지 (테스트 수행전) 황제낙엽 2023.06.26 853
337 java 프로그램으로 회원가입용 인증 메일을 보내는 방법 (from naver / 테스트 성공) file 황제낙엽 2023.06.24 844
336 java 프로그램으로 회원가입용 인증 메일을 보내는 방법 (from bing / 테스트 실패) [1] 황제낙엽 2023.06.23 996
335 base64 encode, decode 황제낙엽 2023.06.12 577
334 BASE64Encoder, BASE64Decoder 의 deprecated 황제낙엽 2023.06.12 884
333 문자의 ASCII 값 테이블 - String.charAt() file 황제낙엽 2023.03.28 738
332 java로 알파벳 대소문자를 랜덤으로 조합하는 코드 만들어줘 (ChatGPT) 황제낙엽 2023.03.28 583
331 ajax 로 post 데이터를 servlet 으로 전달 받기 (with nexacro) [1] secret 황제낙엽 2023.02.26 0
330 구글 클라우드 비전 API 사용하기 (Google Cloud Vision API) 황제낙엽 2023.02.22 596
329 람다식(Lambda Expressions in Java) file 황제낙엽 2022.12.03 1138
328 ConcurrentLinkedQueue와 LinkedBlockingQueue 황제낙엽 2022.04.06 785
» java.util.Queue file 황제낙엽 2022.04.06 8612
326 숫자형 클래스 BigInterger (int, long 범위 초과) 황제낙엽 2022.01.16 1060
325 LocalDate.now() 오늘 날짜 황제낙엽 2022.01.16 577
324 HttpServletRequest, HttpServletResponse, JSONObject, POST 황제낙엽 2022.01.12 627