Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Java - Provide a very short quick comment on each area with /*comment*/ listed explaining what the code is doing public class CreateThreadGroups { public

Java - Provide a very short quick comment on each area with /*comment*/ listed explaining what the code is doing

public class CreateThreadGroups { public CreateThreadGroups() { /* Comment Here */ ThreadGroup alpha = new ThreadGroup("alpha"); ThreadGroup beta = new ThreadGroup("beta"); ThreadGroup theta = new ThreadGroup(alpha, "theta");

/* Comment Here */ (new Thread(alpha, new GroupWorker())).start(); (new Thread(alpha, new GroupWorker())).start(); (new Thread(alpha, new GroupWorker())).start(); (new Thread(beta, new GroupWorker())).start(); (new Thread(theta, new GroupWorker())).start(); (new Thread(theta, new GroupWorker())).start(); }

class GroupWorker implements Runnable { public void run() { while (true) { try { Thread.sleep(1000); for (int i = 0; i < 1000000; i++) ; } catch (InterruptedException ie) { } } } } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Big Data And Hadoop Fundamentals Tools And Techniques For Data Driven Success

Authors: Mayank Bhushan

2nd Edition

9355516665, 978-9355516664

More Books

Students also viewed these Databases questions