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

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.
主站蜘蛛池模板: 溧阳市| 交城县| 阿尔山市| 山阴县| 临猗县| 阿克陶县| 永年县| 东莞市| 滨州市| 宜兰市| 龙门县| 尤溪县| 贵南县| 潼南县| 乌拉特中旗| 将乐县| 富民县| 手游| 九江县| 丹寨县| 新巴尔虎右旗| 丹巴县| 石林| 朝阳县| 丰镇市| 平阴县| 齐河县| 仙居县| 靖安县| 永丰县| 新巴尔虎右旗| 逊克县| 平舆县| 沁水县| 堆龙德庆县| 饶河县| 温州市| 崇仁县| 清河县| 蒙自县| 方正县|