[Java] length / length() / size() 사용법 및 차이
2022. 9. 21. 20:40
프로그래밍/JAVA
length / length() / size() 사용법 및 차이 length ✔️ arrays(int[], double[], String[]) ✔️ length는 배열의 길이를 알고자 할 때 사용 length() ✔️ String related Object(String, StringBuilder etc) ✔️ length()는 문자열의 길이를 알고자 할 때 사용 size() ✔️ Collection Object(ArrayList, Set etc) ✔️ size()는 컬렉션 프레임워크 타입의 길이를 알고자 할 때 사용