Communities
|
Social Applications
Networks
Support
|
|
C-Level Executives
Other Roles
|
|
Support
Education
Partner
Other Tasks
|
| Â |
|
| Â |
|
| |
Note
For simplicity, the Java programming language is called Java in the rest of this document.
|
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z |
{ x = 1; }.
byte type.
switch keyword.
try block.
Object.
code attribute in the
<APPLET> tag to give a complete specification of where to find the main applet class file: code specifies the name of the file, and codebase specifies the URL of the directory containing the file.
// or
/*...
*/.
new keyword.
continue resumes execution where the label occurs.
case conditions in a
switch statement. If all
case conditions are not matched by the value of the
switch variable, the
default keyword will be executed.
while keyword.
double.
if keyword evaluates to false.
try keyword.
Object class.
new operator followed by the class name.
integer.
long.
package keyword.
short.
static can also be used to define a method as a class method. Class methods are invoked by the class instead of a specific instance, and can only operate on class variables.
java.io package includes two abstract classes (
InputStream and
OutputStream).
case keyword in order to execute a group of statements.
this can be used to access class variables and methods.
catch block can handle specific exceptions thrown within the
try block. Also, an optional
finally block will be executed regardless of whether an exception is thrown or not.
int or
Object, and a scope. See also
class variable
,
instance variable
,
local variable
.
void can also be used as a nonfunctional statement.
| |

