The BFOIT Introduction to Programming Class
Table
(Key Words)
Keywords are reserved as core building blocks of the Java language.
You may not use them for names of things you create, like field and
method identifiers. The Java compiler recognizes these words (and
special characters, termed operators and
separators). They direct the
composition of the bytecode (executable) version of your program.
Data Building Blocks (Built-In Types)
Statement Building Blocks
Class Stuff
Method Stuff
Class/Method Stuff
- abstract
-
private, public, protected
- final
- static
- throws
Larger-Than-Class Building Blocks
Others (Just Don't Use; I Don't Talk About)
- native
- synchronized
- transient
- volatile
Back to Table of Contents