What is the use of Order And Export tab in Java Build Path

前端 未结 2 596
旧时难觅i
旧时难觅i 2020-12-13 08:53

What is the use of Order And Export tab in Java Build Path

相关标签:
2条回答
  • 2020-12-13 09:30

    It allows you to do two things:

    • Determine in which order projects and libraries appear in the classpath. If there are any duplicate classes, this determines which version is loaded
    • Determine which projects and libraries will be exported and thus available in other projects that depend on this one.
    0 讨论(0)
  • 2020-12-13 09:35

    Got some hint here for you:

    Order and Export. Order in which projects and libraries appear in the build path and the default runtime classpath; e.g., use classes from a workspace project before using the same classes from an archive library.

    Found it on informit.com

    0 讨论(0)
提交回复
热议问题