728x90
length
배열의 길이를 알고자 할 때 사용
int[] arr = new int[12];
System.out.println(arr.length); // 12
length()
문자열의 길이를 알고자 할 때 사용
String str = "test";
System.out.println(str.length()); // 4
size()
컬렉션프레임워크(ArrayList, Set.. 등) 타입의 길이를 알고자 할 때
ArrayList<Object> test = new ArrayList<Object>();
System.out.println(test.size()); // 0
728x90
'[자바] > 자바 문법' 카테고리의 다른 글
[JAVA] Supplier 함수형 인터페이스(Funtional Interface) (0) | 2021.11.27 |
---|---|
[Java] JVM, JRE, JDK (0) | 2021.11.14 |
[Java] String 클래스의 메서드 replace 와 replaceall 메서드 차이 (0) | 2021.11.01 |
[Java] 배열 복사 Arrays.copyOf() vs System.arraycopy() (0) | 2021.10.31 |
[Java] Vector 와 ArrayList 차이 (0) | 2021.10.24 |