模块是专为重用而设计的软件包容器,每个模块都包含一个模块描述符,其中包含有关的信息模块名称,模块依赖项(它所依赖的其他模块的名称)和它导出的包的名称,这些包只能由依赖的模块使用
p>
模块可以在名为“module-info.java”的文件中声明,该文件是模块描述符。
<strong>module com.tutorialspoint.app{ // Modules upon which the module "com.tutorialspoint.app" depends on requires com.tutorialspoint.services; // Packages exposed by this module that can be used by other modules exports com.tutorialspoint.app.util; }</strong>
以上是Java 9中模块的优势是什么?的详细内容。更多信息请关注PHP中文网其他相关文章!