Java 예약어(Keyword)
예약어(Keyword) 목록
다음은 Java 프로그래밍 언어의 키워드 목록이다.
프로그램에서 다음 식별자를 식별자로 사용할 수 없다. 키워드 const 및 goto는 현재 사용되지는 않았지만 예약되어 있다. true, false 및 null은 키워드처럼 보일 수 있지만 실제로는 리터럴(literal)이다. 프로그램의 식별자로 사용할 수 없다. 모든 예약어는 소문자로 되어 있다.
abstract | continue | for | new | switch |
---|---|---|---|---|
assert*** | default | goto* | package | synchronized |
boolean | do | if | private | this |
break | double | implements | protected | throw |
byte | else | import | public | throws |
case | enum**** | instanceof | return | transient |
catch | extends | int | short | try |
char | final | interface | static | void |
class | finally | long | strictfp** | volatile |
const* | float | native | super | while |
* 사용하지 않음 | ||||
** 1.2 버전에서 추가 | ||||
*** 1.4 버전에서 추가 | ||||
**** 5.0 버전에서 추가 |
최종 수정 : 2021-08-27