模組是專為重複使用而設計的軟體包容器,每個模組都包含一個模組描述符,其中包含有關的資訊模組名稱,模組依賴項(它所依賴的其他模組的名稱)和它導出的套件的名稱,這些套件只能由依賴的模組使用
p>
模組可以在名為「module-info.java」的檔案中聲明,該檔案是模組描述符。
<strong>module com.tutorialspoint.app{ // Modules upon which the module "com.tutorialspoint.app" depends on requires com.tutorialspoint.services; // Packages exposed by this module that can be used by other modules exports com.tutorialspoint.app.util; }</strong>
以上是Java 9中模組的優點是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!