Big Java, Binder Ready Version: Early Objects
6th Edition
ISBN: 9781119056447
Author: Cay S. Horstmann
Publisher: WILEY
expand_more
expand_more
format_list_bulleted
Expert Solution & Answer
Chapter 22, Problem 1RE
Explanation of Solution
Given code:
public static void main(String[] args)
{
GreetingRunnable r1 = new GreetingRunnable("Hello");
GreetingRunnable r2 = new GreetingRunnable("Goodbye");
r1.run();
r2.run();
}
The reason that the program calls run() method on the GreetingRunnable objects so they would execute in sequence in the same thread, because the threads don’t run in parallel as mentioned in the question. It should create a thread for each and call start on the threads.
- The first call of the run() method would print ten “Hello” messages consecutively.
- The second call of the run() method would print ten “Goodbye” messages consecutively.
Want to see more full solutions like this?
Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Chapter 22 Solutions
Big Java, Binder Ready Version: Early Objects
Ch. 22.1 - Prob. 1SCCh. 22.1 - Prob. 2SCCh. 22.2 - Prob. 3SCCh. 22.2 - Prob. 4SCCh. 22.3 - Prob. 5SCCh. 22.3 - Prob. 6SCCh. 22.4 - Prob. 7SCCh. 22.4 - Prob. 8SCCh. 22.5 - Prob. 9SCCh. 22.5 - Prob. 10SC
Ch. 22.6 - Prob. 11SCCh. 22.6 - Prob. 12SCCh. 22 - Prob. 1RECh. 22 - Prob. 2RECh. 22 - Prob. 3RECh. 22 - Prob. 4RECh. 22 - Prob. 5RECh. 22 - Prob. 6RECh. 22 - Prob. 7RECh. 22 - Prob. 8RECh. 22 - Prob. 9RECh. 22 - Prob. 10RECh. 22 - Prob. 11RECh. 22 - Prob. 12RECh. 22 - Prob. 13RECh. 22 - Prob. 14RECh. 22 - Prob. 1PECh. 22 - Prob. 2PECh. 22 - Prob. 3PECh. 22 - Prob. 4PECh. 22 - Prob. 5PECh. 22 - Prob. 6PECh. 22 - Prob. 7PECh. 22 - Prob. 8PECh. 22 - Prob. 9PECh. 22 - Prob. 1PPCh. 22 - Prob. 2PPCh. 22 - Prob. 3PPCh. 22 - Prob. 4PPCh. 22 - Prob. 5PPCh. 22 - Prob. 6PPCh. 22 - Prob. 7PPCh. 22 - Prob. 8PPCh. 22 - Prob. 9PPCh. 22 - Prob. 10PP
Knowledge Booster
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education