模块是代码和数据的组合,它有一个名称,声明对其他模块的依赖关系模块,导出包含可在该模块外部访问的公共类型的包,并指定它使用的服务或它提供的服务实现。所有这些都在 module-info.java 文件中指定,该文件包含在模块的根目录中。
有两种类型的“export”子句可以在“module-info.java”文件中使用。
1) 导出
我们需要允许其他模块使用包tp.com.tutorialspoint.model的类和接口,我们可以这样写:
<strong>module com.tutorialspoint.model { exports tp.com.tutorialspoint.model; }</strong>
了解一个包只能出现在一个模块中这一点非常重要。否则,我们会得到如下错误:
<strong>Error:(1, 1) java: package exists in another module:</strong>
2) 将
<strong>module com.tutorialspoint.model { exports tp.com.tutorialspoint.model to com.tutorialspoint.gui; }</strong>
以上是在Java 9中,module-info文件中的'export'子句有什么用途?的详细内容。更多信息请关注PHP中文网其他相关文章!