CONTENTS | PREV | NEXT | The Java Language Environment |
The interpreted and dynamic nature of Java provides several benefits:
- The interpreted environment enables fast prototyping without waiting for the traditional compile and link cycle,
- The environment is dynamically extensible, whereby classes are loaded on the fly as required,
- The fragile superclass problem that plagues C++ developers is eliminated because of deferral of memory layout decisions to run time.