자바 예약어(자바 키워드) 50개

자바 예약어(자바 키워드) 50개

임포트 : package, import

 

식별자 : public, protected, private

 

반환값 : void, double, byte, enum(열거형), int, short, char, float, long, boolean

 

클래스 : abstract, interface, class

 

final, const(final과 같음), static, volatile(멀티 스레드 접근시 원본성 보장), strictfp(부동소수점의 정밀도 보장), transient(직렬화방지)

 

함수:

while, do, for, continue, goto, break, assert(검증),

if, else, switch, case,

return

 

에러관련 : throw, catch, try, finally, throws

 

상속관련 : implements, extends

 

native(다른 랭귀지로 구현한다는 의미) / super(부모), this(나) / instanceof / default / new / synchronized