Home : Course Map : Topic Index
Topic Index
JavaTech
Course Map
     About JavaTech
     Codes List
     Exercises
     Feedback
     References
     Resources
     Tips
     Topic Index
     Course Guide
     What's New

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

A
B
C
D
  • deprecation - a new version of the Java language may declare that a particular method in an earlier version has been "deprecated". This indicates that a new preferred method or class should be used instead. The javac compiler will flag such deprecated method invocations. The Java API specifications will provide details on why the method was deprecated and what the preferred method is.
  • do/while statements - 2:More Basics:Loops - for, while and do/while statements
E
F
G
 
H
I
J
  • javac - the Sun java compiler that takes Java source code as input and produces bytecode output
  • JVM - see Virtual Machine (VM)
K
 
L
M
 
N
 
O
P
Q
 
R
 
S
T
 
U
 
V
  • varargs - 5: Tech: In J2SE5.0, a method can have a variable number of arguments. Denoted with three dots following the type, as in printf (String format, Object... args). Must be in the last place in the method argument list. This feature is also referred to by the phrase variable arity methods.
  • Virtual Machine (VM) - the interpreter which reads in and executes the bytecode. Appears to the program just as if it were a real processor in hardware.
  • VM - see Virtual Machine.
W, X, Y, Z


  
  Part I Part II Part III
Java Core 1  2  3  4  5  6  7  8  9  10  11  12 13 14 15 16 17
18 19 20
21
22 23 24
Supplements

1  2  3  4  5  6  7  8  9  10  11  12

Tech 1  2  3  4  5  6  7  8  9  10  11  12
Physics 1  2  3  4  5  6  7  8  9  10  11  12

Java is a trademark of Sun Microsystems, Inc.