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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。