Industrial manufacturing
Industrial Internet of Things | Industrial materials | Equipment Maintenance and Repair | Industrial programming |
home  MfgRobots >> Industrial manufacturing >  >> Industrial programming >> Java

Java 10: Unified JDK Forest Repository

JEP 296 - Consolidated JDK Forest as Single Repository

In JDK 9, there are eight module based directories termed as repos.

Code is organized like −

$ROOT/jdk/src/java.base
...
$ROOT/langtools/src/java.compiler
...

Java 10 onwards, JDK forests are organized into single repository to streamline development. Now code in organized as -

$ROOT/src/java.base
$ROOT/src/java.compiler
...

Java

  1. Understanding Java: JDK, JRE, and JVM Explained
  2. Master Java Operators: Types, Syntax, & Practical Examples
  3. Java Comments: Types, Usage, and Best Practices
  4. Mastering Java's super Keyword: Advanced Usage & Practical Examples
  5. Mastering Java Interfaces: Concepts, Implementation, and Best Practices
  6. Mastering Java Try‑with‑Resources: Automatic Resource Management Explained
  7. Java Annotations Explained: Types, Placement, and Practical Examples
  8. How to Download and Install Java JDK 8 on Windows 10 (64‑Bit) – Step‑by‑Step Guide
  9. JDK, JRE, and JVM Explained: Key Differences and How They Work Together
  10. Java 10: Unified JDK Forest Repository