Notice
Recent Posts
Recent Comments
«   2024/11   »
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 29 30
Archives
Today
In Total
관리 메뉴

A Joyful AI Research Journey🌳😊

자바 명명 규칙 본문

💻Bootcamp Self-Study Revision✨/Spring, Spring Boot, Java, SQL

자바 명명 규칙

yjyuwisely 2023. 4. 28. 09:49

패키지명: 모두 소문자, 밑줄문자(_) 사용 안 함

클래스명: 파스칼표기법(PascalCase), 명사 또는 명사구

인터페이스명: 파스칼표기법(PascalCase), 명사 또는 명사구이지만, 가끔 형용사 사용(ex. Readable)

메서드명: 낙타표기법(lowerCamelCase)

상수명: 대문자 뱀 표기법 UPPER_SNAKE_CASE

비상수 필드명, 파라미터명, 로컬 변수명: 낙타표기법(lowerCamelCase)

DTO, DAO: GuestDTO

참고

728x90
반응형
Comments