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


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


SecurityManager类getThreadGroup()方法

  • getThreadGroup() 方法在 java.lang 包中可用。
  • getThreadGroup() 方法用于返回在调用 this 期间创建任何新线程的线程组,否则当在调用 this 期间没有创建与其关联的新线程时,它返回当前线程的线程组。
  • getThreadGroup() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • getThreadGroup() 方法在返回线程组时不抛出异常。

用法:

    public ThreadGroup getThreadGroup();

参数:

  • 它不接受任何参数。

返回值:

这个方法的返回类型是ThreadGroup,它返回要在其中实例化任何新线程的线程组。

例:

// Java program to demonstrate the example 
// of ThreadGroup getThreadGroup() method of SecurityManager 

import java.security.*;

public class GetThreadGroup {
    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 SecurityManager object
        SecurityManager smgr = new SecurityManager();

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

        // By using getThreadGroup() method is to retrieve the
        // Thread Group
        ThreadGroup tg = smgr.getThreadGroup();

        // Display tg
        System.out.println("smgr.getThreadGroup() = " + tg);
    }
}

输出

smgr.getThreadGroup() = java.lang.ThreadGroup[name=main,maxpri=10]


相关用法


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