- length vs length() vs size()
💡 **length vs length() vs size()** - 길이값 가져오기
**1. length**
- arrays(int[], double[], String[])
- `length`는 배열의 길이를 조회해줍니다.
**2. length()**
- String related Object(String, StringBuilder etc)
- `length()`는 문자열의 길이를 조회해줍니다. (ex. “ABCD”.length() == 4)
**3. size()**
- Collection Object(ArrayList, Set etc)
- `size()`는 컬렉션 타입목록의 길이를 조회해줍니다.