Java — Constructors of ThreadGroup Class | Code Factory

Index Page : Link

Donate : Link

WordPress Blog : Link

1. ThreadGroup tg = new ThreadGroup(String name)

  • Create a new Thread Group with specified group name.
package com.example.thread;public class Test {
public static void main(String... args) {
ThreadGroup tg1 = new ThreadGroup("Group1");
System.out.println(tg1.getName()); // Group1
System.out.println(tg1.getParent().getName()); // main
}
}

2. ThreadGroup tg1 = new ThreadGroup(ThreadGroup tg, String name)

  • Creates a new Thread Group with the specified group name.
package com.example.thread;public class Test {
public static void main(String... args) {
ThreadGroup tg1 = new ThreadGroup("Group1");
System.out.println(tg1.getName()); // Group1
System.out.println(tg1.getParent().getName()); // main

ThreadGroup tg2 = new ThreadGroup(tg1, "Group2");
System.out.println(tg2.getName()); // Group2
System.out.println(tg2.getParent().getName()); // Group1
}
}

--

--

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store