Special | 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 | ALL
A |
|---|
ASCII : way of encoding computer characters: | |
|
autoboxing: automatic conversion between wrappers and primitive:http://en.wikipedia.org/wiki/Autoboxing | |
|
B |
|---|
belonging to the class, not an instance of a class:For more information see http://mindprod.com/jgloss/static.html | |
|
C |
|---|
constructor : method called automatically on class construction: | |
|
E |
|---|
encapsulation: separation of interface from implementation: | |
|
I |
|---|
implements : an interface will be used:The implements keyword is used to indicate an interface will be used. It is used in the same place that the extends keyword is used when inheriting the functionality of another class. More information about the use of interfaces can be found in the Sun Java tutorial at http://java.sun.com/docs/books/tutorial/java/interpack/createinterface.html | |
|
J |
|---|
java archive; multiple java files wrapped into a single container file: | |
|
Java Development Kit:The JDK is given a number for the release version, e.g. JDK 1.1, JDK 1.2, JDK 1.4 and JDK 1.5. Sun also gives an overall version name for big releases of Java, e.g. Java2 and Java5. From a developer perspective it is generally more informative to refer to the version of the JDK> | |
|
JDK: Java Development Kit, minimal tool set for creating Java programs:The Sun Java Development Kit (JDK) is the freely downloadable set of tools for developing and running Java programs. It contains the Java Runtime Environment (JRE), which can be downloaded separatly if all you want to do is run Java code and not create new programs. The JDK is given a number for the release version, e.g. JDK 1.1, JDK 1.2, JDK 1.4 and JDK 1.5. Sun also gives an overall version name for big releases of Java, e.g. Java2 and Java5. From a developer perspective it is generally more informative to refer to the version of the JDK | |
|
JVM: Software required to run Java programs:For more information see the WikiPedia at http://en.wikipedia.org/wiki/Jvm | |
|
