官术网_书友最值得收藏!

Executing your module

Executing your compiled code again uses the familiar java command, but with some new options. Here is the information you need to tell the java command in this case:

  1. The location of the compiled modules--also called the module path.
  2. The module that contains the class with the main method that needs to start the execution.
  3. The class with the main method in the preceding module that needs to start the execution.

To execute the code you just compiled in the previous step, you'd need to run the following command in the same directory:

Here, you are specifying the location of the compiled modules (1) using the --module-path flag. We've told the compiler in the previous step to place our compiled code in the out folder, and so that's the value we need to provide here. You specify the module (2) and the class with the main method (3) using the --module option. Note the format of the value--it's <module-name>/<fully-qualified-classname>. Here, our code consists of just one class, so it feels unnecessary to specify this, but you can imagine a code base with multiple modules and classes, many of which might have main methods. It's important for the runtime to know which main method of which class of which module it needs to start the execution on.

There are alternative option names for many of these options. For example, instead of using --module-path, you can simply use -p, and --module can be replaced with -m.

If the execution completed successfully, you should see the message Hello World! printed on the console.

You've learned about two new arguments, --module-source-path and --module-path. They roughly correspond to the -sourcepath and -classpath options that we've been using in Java for a while now.

Java 8 and earlier:

sourcepath: Tells the compiler where the source files are that need to be compiled.

classpath: Tells the compiler/runtime where the compiled types are that need to be included in the classpath for compiling/running code.

Java 9:

module-source-path: Tells the compiler where the source files for the modules are.

module-path: Tells the compiler/runtime where the compiled modules are that need to be considered for compiling/running code your code.
主站蜘蛛池模板: 西华县| 类乌齐县| 荥阳市| 库车县| 宁晋县| 松桃| 沙雅县| 富宁县| 社旗县| 绍兴县| 宝兴县| 剑川县| 龙海市| 内乡县| 鱼台县| 吉木乃县| 泰宁县| 长治市| 金华市| 库车县| 年辖:市辖区| 准格尔旗| 深泽县| 仙游县| 杭锦后旗| 同德县| 广丰县| 达拉特旗| 屯门区| 乳源| 岳阳县| 保定市| 兴宁市| 高陵县| 固阳县| 吉安市| 滨州市| 淮滨县| 杭锦后旗| 彭州市| 封丘县|