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
- spring
- kotlin
- 스프링
- Greedy
- transaction
- http
- Android
- JDBC
- jpa
- pointcut
- 인프런
- Spring Boot
- springdatajpa
- db
- 김영한
- 알고리즘
- Proxy
- QueryDSL
- 백준
- 스프링 핵심 기능
- SpringBoot
- Thymeleaf
- Servlet
- 그리디
- AOP
- java
- Exception
- 스프링 핵심 원리
- 자바
- JPQL
Archives
- Today
- Total
목록배열 (1)
개발자되기 프로젝트
Array 구현
1. Array 특징 동일한 데이터 타입을 순서에 따라 관리 정해진 크기 있음 요소 추가, 제거시 다른 요소의 이동 필요 배열의 i번 째 요소를 찾는 인덱스 연ㅅ나 빠름 jdk : ArrayList, Vector 2. Array 구현 package arrayList; public class MyArray { int[] intArr; int count; public int ARRAY_SIZE; public static final int ERROR_NUM = -99999999; public static final int OK = 200; public MyArray() { count = 0; ARRAY_SIZE = 10; intArr = new int[ARRAY_SIZE]; } public MyArray(in..
Java/자료구조
2021. 10. 24. 14:59