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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。