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


Java ThreadGroup toString()用法及代碼示例


ThreadGroup類toString()方法

  • toString() 方法在 java.lang 包中可用。
  • toString() 方法用於返回此線程組的字符串表示(即此方法返回如何表示此線程組的字符串)。
  • toString() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • toString() 方法可能會在此 ThreadGroup 的字符串表示時拋出異常。
    SecurityException– 當不允許當前線程更新此線程組時,可能會拋出此異常。

用法:

    public String toString();

參數:

  • 它不接受任何參數。

返回值:

這個方法的返回類型是String– 表示該線程組的字符串。

例:

// Java program to demonstrate the example 
// of String toString() method of ThreadGroup 

public class toString {
    public static void main(String[] args) {
        ThreadGroup th_grp1 = new ThreadGroup("th_grp - 1");
        ThreadGroup th_grp2 = new ThreadGroup("th_grp - 2");

        // By using getName() method is to display
        // thread group name
        System.out.println("th_grp1.getName():" + th_grp1.getName());
        System.out.println("th_grp2.getName():" + th_grp2.getName());

        // By using toString() method is to string
        // representation of thread group 
        System.out.println("th_grp1.toString():" + th_grp1.toString());
        System.out.println("th_grp2.toString():" + th_grp2.toString());
    }
}

輸出

th_grp1.getName():th_grp - 1
th_grp2.getName():th_grp - 2
th_grp1.toString():java.lang.ThreadGroup[name=th_grp - 1,maxpri=10]
th_grp2.toString():java.lang.ThreadGroup[name=th_grp - 2,maxpri=10]


相關用法


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