A Guide to Java 9 Modularity
原文地址:https://www.baeldung.com/java-9-modularity
以下中文翻译为作者根据自己的理解+Google+YouDao作为参考翻译而得,存在偏颇之处请读者查看对应原文,自行理解。
¶1. Overview
Java 9 introduces a new level of abstraction above packages, formally known as the Java Platform Module System (JPMS), or “Modules” for short.
Java 9基于package引入了一个新的抽象级别,正式称为Java平台模块系统(JPMS)或“模块”。
In this tutorial, we’ll go through the new system and discuss its various aspects.
在本教程中,我们将通过一个新系统来探索其各个方面。
We’ll also build a simple project to demonstrate all concepts we’ll be learning in this guide.
我们也将构建一个简单的工程来演示我们在本教程中的学到的所有的概念。