개발자의 끄적끄적

[java] 자바 length()와 size()의 차이점 [펌] 본문

개발/java & jsp

[java] 자바 length()와 size()의 차이점 [펌]

효벨 2020. 1. 3. 14:51
728x90
반응형

[java] 자바 length()와 size()의 차이점 [펌]

 

int[] array = new int[10];

array.length()는 10    ->    배열의 전체 크기!

 

ArrayList<Integer> list = new ArrayList<Integer>();

list.add(new Integer(1));

list.add(2);  // auto-boxing

list.size()는 2    ->    리스트에 들어있는 원소 수!

 

 

 

출처 : https://park0729.tistory.com/entry/%EC%9E%90%EB%B0%94-length%EC%99%80-size%EC%9D%98-%EC%B0%A8%EC%9D%B4%EC%A0%90

반응형
Comments