Java中的类 getEnclosureMethod() 方法和示例
Java.lang.Class 类的getEnclosureMethod()方法用于获取该类的封闭方法。如果该类是在该方法中声明的本地类或匿名类,则该方法返回该类的封闭方法。否则此方法返回 null。
句法:
public Method getEnclosingMethod()
参数:此方法不接受任何参数。
返回值:如果该类是在该方法中声明的本地类或匿名类,则该方法返回该类的封闭方法。否则此方法返回 null。
异常如果存在安全管理器并且不满足安全条件,则此方法将引发SecurityException 。
下面的程序演示了 getEnclosureMethod() 方法。
示例 1:
Java
// 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());
}
}
Java
// 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());
}
}
输出:
Class represented by myClass: class Test
EnclosingMethod of myClass: null
示例 2:
Java
// 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#getEnclosureMethod–