출처: https://bumcrush.tistory.com/182 [맑음때때로 여름]

 

상수(constant) 

 

final int i=3.141592 (파이값)

같은 것들을 변하지 않게 고정해줄때씀

 

final double PI = 3.141592;
// PI = 3.14; 저장불가능 재정의불가능

 

+ Recent posts