當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Class getModule()用法及代碼示例


java.lang.Class類的getModule()方法用於獲取此實體的模塊。該實體可以是類,數組,接口等。該方法返回該實體的模塊。

用法:

public Module getModule()

參數:此方法不接受任何參數。


返回值:此方法返回實體的模塊。

下麵的程序演示了getModule()方法。

注意:該方法是Java 9中引入的。因此,要運行此方法,我們需要使用Java 9的編譯器。因此,該方法不能在在線IDE中運行。

示例1:

// Java program to demonstrate getModule() method 
  
public class Test { 
    public static void main(String[] args) 
        throws ClassNotFoundException 
    { 
  
        // returns the Class object for this class 
        Class myClass = Class.forName("Test"); 
  
        System.out.println("Class represented by myClass: "
                           + myClass.toString()); 
  
        // Get the module of myClass 
        // using getModule() method 
        System.out.println("Module of myClass: "
                           + myClass.getModule()); 
    } 
}

輸出:

Class represented by myClass: class Test
Module of myClass: unnamed module @23fc625e

示例2:

// Java program to demonstrate getModule() method 
  
public class Test { 
  
    class Arr { 
    } 
  
    public static void main(String[] args) 
        throws ClassNotFoundException 
    { 
        // returns the Class object for Arr 
        Class arrClass = Arr.class; 
  
        // Get the module of arrClass 
        // using getModule() method 
        System.out.println("Module of arrClass: "
                           + arrClass.getModule()); 
    } 
}

輸出:

Module of arrClass: unnamed module @23fc625e

參考: https://docs.oracle.com/javase/9/docs/api/java/lang/Class.html#getModule–



相關用法


注:本文由純淨天空篩選整理自srinam大神的英文原創作品 Class getModule() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。