Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 자바 스트링
- 스프링뼈대
- string과 stringbuilder
- 프로그래머스 레벨1
- string
- 최소공배수
- 자바 유클리드
- ineer join
- 최대공약수와 최소공배수
- 베주계수
- 모던자바
- isuppercase()
- git 컨벤션
- 유클리드호제법
- stringbuilder의 reverse()
- 래퍼타입
- addDoc
- toLowerCase()
- 동일성과 동등성
- 최대공약수
- 자바 최대공약수
- islowercase()
- replaceAll()
- while과 two-pointer
- sql 데이터형 변환
- Git사용법
- StringBuilder
- 자바 최소공배수
- 스프링
- 스프링환경설정
Archives
- Today
- Total
주노 님의 블로그
[java] 프로젝트를 들어가기 전 - 자바 네이밍 규칙 본문
규칙 관례
- 패키지
항상 소문자
myapppackage myapp; // 올바른 패키지 이름 예시
- 클래스, 인터페이스 이름
파스칼 표기법 : 각 단어의 첫 글자를 대문자로 하여 작성
Customer, AcoountManager
public class Customer { // 클래스 내용 } public interface AccountManager { // 인터페이스 내용 }
- 메서드 이름
카멜 표기법 : 메서드 첫 단어는 소문자로 그다음 단어의 첫 글자는 대문자로
calculateTotal()
public class Order { public void calculateTotal() { // 메서드 내용 } }
- 변수 이름
카멜 표기법 : 메서드 첫 단어는 소문자로 그다음 단어의 첫 글자는 대문자로
String userName, int number
public class User { private String userName; private int number; public void setUserName(String userName) { this.userName = userName; } public void setNumber(int number) { this.number = number; } }
- 상수 이름
대문자 : 모든 단어를 대문자로 사용하며 단어 사이에 언더바(_)를 작성한다
MAX_VALUE, PI
public class MathConstants { public static final double PI = 3.14159; public static final int MAX_VALUE = 100; }
규칙2
아래는 자바에서 특정한 의미를 가지는 예약어로 변수명이나, 클래스명등으로 사용 할 수 없다.
abstract | assert | boolean | break | byte | case | catch |
char | class | const | continue | default | do | double |
else | extends | false | final | finally | float | for |
goto | if | implements | import | instanceof | int | interface |
long | native | new | null | package | private | protected |
public | return | short | static | super | switch | synchronized |
this | throw | throws | transient | true | try | void |
volatile | while |
규칙3
변수명과 클래스명을 보고 어떤 작업을 하는가 추론이 가능해야함