当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java SecurityManager getClassContext()用法及代码示例


SecurityManager类getClassContext()方法

  • getClassContext() 方法在 java.lang 包中可用。
  • getClassContext() 方法用于将当前正在执行的堆栈跟踪作为 "Class" 类型的数组返回。
  • 栈上方法的个数是数组的长度,index[0]元素表示当前执行的方法的类名,相邻的index[1]元素表示当前执行的方法调用者的类名等等。 .
  • getClassContext() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • getClassContext() 方法在当前执行堆栈的 Class[] 时不抛出异常。

用法:

    public Class[] getClassContext();

参数:

  • 它不接受任何参数。

返回值:

这个方法的返回类型是Class[],它将当前执行堆栈跟踪作为 "Class" 类型的数组返回。

例:

// Java program to demonstrate the example 
// of Class[] getClassContext() method of SecurityManager 

import java.security.*;

public class GetClassContext extends SecurityManager {
    public static void main(String[] args) {
        // By using setProperty() method is to set the policy property 
        // with security manager
        System.setProperty("java.security.policy", "file:/C:/java.policy");

        // Instantiating a GetClassContext object
        GetClassContext gc = new GetClassContext();

        // By using setSecurityManager() method is to set the
        // security manager
        System.setSecurityManager(gc);

        // By using getContext() method is to return the
        // array of Class context
        Class[] cl = gc.getClassContext();

        //  Display Class context array
        for (int k = 0; k < cl.length; ++k)
            System.out.println("cl[k] = " + cl[k]);
    }
}

输出

cl[k] = class GetClassContext


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java SecurityManager getClassContext() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。