gpt4 book ai didi

java - 默认情况下,模块路径上有哪些系统模块?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:22:03 29 4
gpt4 key购买 nike

当我通过 java -cp(没有 --add-modules--limit-modules)运行应用程序时,一些 Java系统模块是可观察的,而其他模块则不是。

例如,所有java.se 模块都是可观察的。所有 java.se.ee 模块都是不可观察的。我知道 javafx.* 模块是可观察的。 jdk.unsupportedjdk.shell 也是可观察的。

那么,我的假设是否正确:如果没有指定 --add-modules--limit-modules,则可观察系统模块集由所有系统组成除了 java.se.ee?

之外的模块

是否有可靠的方法来了解默认可观察系统模块的确切列表?我知道有一个 --list-modules 选项,但它列出了所有模块,包括 java.se.ee

最佳答案

So, is my assumption correct: if no --add-modules and --limit-modules are specified, the set of observable system modules consists of all system modules except java.se.ee?

简而言之,是的,这是正确的。

Java 9 中启用的默认模块集称为根模块。每JEP 261 ,默认的根模块集定义为:

  • The java.se module is a root, if it exists. If it does not exist then every java.* module on the upgrade module path or among the system modules that exports at least one package, without qualification, is a root.

  • Every non-java.* module on the upgrade module path or among the system modules that exports at least one package, without qualification, is also a root.

这是 java.se 模块中包含的内容的精美图形: enter image description here(来源:Java 9 javadoc)

java.se聚合模块一样,java.se.ee模块本身不提供任何类,它是一个聚合模块,包括以下模块:

java.se
java.activation
java.annotations.common
java.corba
java.transaction
java.xml.bind
java.xml.ws

Is there a reliable way to know the exact list of default observable system modules? I know there is a --list-modules option, but it lists all modules including java.se.ee.

您的术语在这里略有偏差。在 Java 9 中,如果满足以下两个条件,则模块可观察:

  • 该模块是一个系统模块(即来自 JDK)或者它被添加到模块路径
  • 模块未通过--limit-modules排除

这意味着 java.se.ee 默认是可观察的

我想您反而想知道哪些模块是默认的根模块?在这种情况下,请参阅上面的根模块定义。

关于java - 默认情况下,模块路径上有哪些系统模块?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44051223/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com