|
|
|
| Here is a quick synopsis of some of the classes you'll find in the ObjectThe ultimate root class of all Java classes ClassA class that describes a Java class. Wrapper ClassesThese are:
These classes provide immutable wrappers for the primitive data types, when you wish to manipulate such types as objects -- especially to allow for their use in polymorphism. Number is an abstract class, from which the numeric wrappers all derive. All the other classes are final classes. String, StringBufferObjects that represent strings. String is an immutable type. StringBuffer allows its string to be changed in place. RuntimeContains a number of low-level methods associated with the Java run-time system. SystemContains a number of low-level methods associated with the system. All its methods are class methods; it may not be instantiated. MathProvides support for the mathematical values e and p, and defines static methods for floating point trigonometry, exponentiation, minimum, maximum, and pseudo-random number generation. All its methods are class methods; it may not be instantiated. ThreadProvides support for multiple threads of control running within the same Java interpreter. ProcessDefines a platform-independent interface to platform-dependent processes running externally to the Java interpreter. Throwable, Exception, Error, and Specific Exception ClassesDefines a set of objects that may be thrown as exceptions. |
|
This page was last modified on 02 October, 2007 |