You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
아이템 설명
지역 변수의 유효 범위를 최소로 줄이면
코드 가독성
과유지보수성을 높이고
오류가능성은 낮아진다
.자바 변수
지역변수의 범위를 줄이는 방법
1. 가장 처음 쓰일 때 선언하기.
2. 거의 모든 지역변수는 선언과 동시에 초기화 하기.
try-catch-finally
문은 예외다. 변수를 초기화하는 과정에서 확인된 예외(Checked Exception)의 발생 가능성이 있으면try
불록 안에서 초기화를 해야 한다.3. 되도록 while 문보다 for 문 사용을 고려할 것
for 문을 사용하면 이점
4. 메서드를 작게 유지하고 한 가지 기능에 집중하기.
핵심정리
Beta Was this translation helpful? Give feedback.
All reactions