Java Keywords |
|
|
Java language has the following keywords.
abstract
| assert
| boolean
| break
| Byte
| catch
| case
| char
| class
| const
| continue
| default
| do
| double
| else
| enum
| extends
| final
| finally
| float
| for
| goto
| if
| implements
| import
| instanceof
| int
| interface
| long
| native
| New
| package
| private
| protected
| public
| return
| short
| static
| strictfp
| super
| switch
| synchronized
| this
| throw
| throws
| transient
| try
| void
| volatile
| while
|
Comments Comments are used to explain your code. Java programs can have two kinds of comments: implementation comments and documentation comments. Implementation comments are those found in C++, which are delimited by /*...*/, and //. Documentation comments (known as "doc comments") are Java-only, and are delimited by /**...*/.
|
|
|