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


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


java.lang.Class類的getEnclosingMethod()方法用於獲取此類的封閉方法。如果該類是該方法中聲明的本地類或匿名類,則該方法返回此類的封閉方法。否則,此方法返回null。

用法:

public Method getEnclosingMethod()

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


返回值:如果該類是該方法中聲明的本地類或匿名類,則此方法返回此類的封閉方法。否則,此方法返回null。

異常如果存在安全管理器且不滿足安全條件,則此方法將引發SecurityException。

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

示例1:

// Java program to demonstrate getEnclosingMethod() method 
  
import java.util.*; 
  
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 enclosing methods of myClass 
        // using getEnclosingMethod() method 
        System.out.println("EnclosingMethod of myClass: "
                           + myClass.getEnclosingMethod()); 
    } 
}
輸出:
Class represented by myClass: class Test
EnclosingMethod of myClass: null

示例2:

// Java program to demonstrate getEnclosingMethod() method 
  
import java.util.*; 
  
class Main { 
  
    public Object obj; 
  
    public Object func() 
    { 
        class Arr { 
        }; 
        return new Arr(); 
    } 
  
    public static void main(String[] args) 
        throws ClassNotFoundException 
    { 
        Main t = new Main(); 
  
        // returns the Class object 
        Class myClass = t.func().getClass(); 
  
        // Get the enclosing constructors of myClass 
        // using getEnclosingConstructor() constructor 
        System.out.println("getEnclosingMethod of myClass: "
                           + myClass.getEnclosingMethod()); 
    } 
}
輸出:
EnclosingConstructor of myClass: public java.lang.Object Main.func()

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



相關用法


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