본 게시글은 Google Java Style Guide 에서 주로 참고할만한 내용들을 옮겨 작성하였습니다.
,
다음의 개행 허용, 추가로 하나까지 더 허용private enum Answer {
YES {
@Override public String toString() {
return "yes";
}
},
NO,
MAYBE
}
private enum Suit { CLUBS, HEARTS, SPADES, DIAMONDS }
int a, b;
금지) (for문 헤더 제외)String args[]
대신에 String[] args
사용."block like construct" 처럼 포매팅 가능하다. 모두 허용
new int[] { new int[] {
0, 1, 2, 3 0,
} 1,
2,
new int[] { 3,
0, 1, }
2, 3
} new int[]
{0, 1, 2, 3}
@Override
@Nullable
public String getNameIfPresent() { ... }
@Override public int hashCode() { ... }
_
를 쓴다. 고로 정규식 \w+
와 매칭된다./**
* Multiple lines of Javadoc text are written here,
* wrapped normally...
*/
public int method(String p1) { ... }
/** 짧은 Javadoc 입니다. */
디테일한 내용은 Google Java Style Guide 에서 참고해주세요.