반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 스레드그룸
- 리눅스세팅
- char[] String 형변환
- 표현 언어
- ThreadGroup()
- 메모리스트림
- 상관 서브 쿼리
- isinterrupted()
- Linux셋팅
- first-child
- interrupt()
- MemoryStream
- StringWriter
- 리눅스셋팅
- interrupted()
- InputDialog
- 아이디중복
- first-of-child
- ObjectInputStream
- ID중복
- Daemon()
- 동기화
- 상관서브쿼리
- Linux세팅
- sleep()메소드
- String char[] 형변환
- StringReader
- include지시자
- include 지시자
- include액션태그
Archives
- Today
- Total
목록deque (1)
다연이네
[days22] 컬렉션 클래스<List> - Stack과 Queue
스택(Stack)과 큐(Queue) ㄱ. 스택 1) LIFO구조 - Last In First Out - 마지막에 저장된 데이터가 가장 먼저 꺼내지는 구조 2) Collection -> List -> Vector 클래스 -> Stack 클래스 (스택클래스는 벡터클래스를 상속받는다) ㄴ. 큐 1) FIFO구조 - First In First Out - 처음에 저장된 데이터가 가장 먼저 꺼내지는 구조 스택 push(), pop(), peek(), empty() - 집어넣을때 push() 꺼낼때 peek()/pop() add사용금지 Stack list = new Stack(); list.push("김동준"); list.push("이동준"); list.push("박동준"); System.out.println(lis..
Java
2020. 10. 21. 09:30