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 |
Tags
- bubblesort
- MariaDB
- cmd mariaDB
- 포워드 엔지니어링
- 알고리즘
- #{}
- container-fluid
- nodejs http
- git 명령어
- a href="#" onclick="return false"
- ${}
- $('input [name=
- 자바 예상문제
- git
- resultType="hashmap"
- BCrypt
- $(document).on
- 전역객체
- 자바 로또
- REST
- gradle 설치
- 유효성
- templet
- git message
- SQL
- it지원
- nodejs
- interface default
- 최대값 최소값
- map형태 jsp와 mapper
Archives
- Today
- Total
Rubberduck-Debugging
queue와 stack, 전위후위연산자, toArray 본문
l
list[size++] =lesson; 할 경우
후위 연산자 이기 때문에, list[size] =lesson이 끝나고 나서
size가 하나 증가하는 것이다.
따라서 list[size] = lesson; size++; 과 뜻이 같다.
=============================================================
큐는 원통형으로 생각하면 편하다. 예매 프로그램 만들 때 주로 사용된다.
스택은 차곡차곡 쌓이는 형태. 연탄을 가는 느낌.
==================================================
toArray() 란?
리스트 >> 어레이리스트로 변환하는 메소드
출처: http://sgdev.tistory.com/19 [SG Dev]
'개발자 > 20181127 교육과정' 카테고리의 다른 글
[5일차] exerd 물리 DB모델링 (0) | 2018.12.03 |
---|---|
[5일차] exerd 논리 DB모델링 (0) | 2018.12.03 |
Arrays.copyOf(원본배열, 복사할 길이); (0) | 2018.11.30 |
[4일차] (0) | 2018.11.30 |
[3일차] (0) | 2018.11.29 |