项目—-模块—-包—-类

模块间的调用
两个模块(模块一 test01、模块二test02):
test01、test02都在src下创建配置文件:module-info.java
两个模块(模块一 test01、模块二test02):
模块化 - 图1

  • 普通调用
    • test01配置文件 配置导出:exports ```java

module test01 { exports com.base; }

/ 导出第一层的包 module demo01 { exports com; } /

  1. - test02配置文件 配置依赖:requires
  2. ```java
  3. module test02 {
  4. requires test01;
  5. }

// 注意添加对模块的依赖