일반 java.util.Queue

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

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

 

번호 제목 글쓴이 날짜 조회 수
327 어떤 multi-part 설정도 제공되지 않았기 때문에, part들을 처리할 수 없습니다. file 황제낙엽 2023.08.23 2744
326 (Bard) the request was rejected because no multipart boundary was found file 황제낙엽 2023.08.23 2089
325 (Bard) multipart/form-data 요청 처리를 위한 MultipartHttpServletRequest file 황제낙엽 2023.08.21 1779
324 JPA 개요 황제낙엽 2023.07.25 2302
323 javax.mail 샘플 몇가지 (테스트 수행전) 황제낙엽 2023.06.26 2202
322 java 프로그램으로 회원가입용 인증 메일을 보내는 방법 (from naver / 테스트 성공) file 황제낙엽 2023.06.24 2283
321 java 프로그램으로 회원가입용 인증 메일을 보내는 방법 (from bing / 테스트 실패) [1] 황제낙엽 2023.06.23 2462
320 base64 encode, decode 황제낙엽 2023.06.12 2287
319 BASE64Encoder, BASE64Decoder 의 deprecated 황제낙엽 2023.06.12 2234
318 문자의 ASCII 값 테이블 - String.charAt() file 황제낙엽 2023.03.28 2042
317 java로 알파벳 대소문자를 랜덤으로 조합하는 코드 만들어줘 (ChatGPT) 황제낙엽 2023.03.28 2219
316 ajax 로 post 데이터를 servlet 으로 전달 받기 (with nexacro) [1] secret 황제낙엽 2023.02.26 0
315 구글 클라우드 비전 API 사용하기 (Google Cloud Vision API) 황제낙엽 2023.02.22 2056
314 람다식(Lambda Expressions in Java) file 황제낙엽 2022.12.03 3201
313 ConcurrentLinkedQueue와 LinkedBlockingQueue 황제낙엽 2022.04.06 2194
» java.util.Queue file 황제낙엽 2022.04.06 11193
311 숫자형 클래스 BigInterger (int, long 범위 초과) 황제낙엽 2022.01.16 2234
310 LocalDate.now() 오늘 날짜 황제낙엽 2022.01.16 1866
309 [java.lang.ProcessBuilder] “매개변수가 틀립니다” 혹은 ”Cannot run program” 황제낙엽 2021.10.15 2146
308 특정 경로에서 쉘 명령어 실행하기 (ProcessBuilder) 황제낙엽 2021.10.08 1977