Question 1: For each of the following tasks, specify which thread it should be executed in and why.
Answer 1:
- Initializing the GUI. The event dispatch thread; most interactions with the GUI framework must occur on this thread.
- Loading a large file. A worker thread. Executing this task on the event dispatch thread would prevent GUI events from being processed, "freezing" the GUI until the task is finished. Executing this task on an initial thread would cause a delay in creating the GUI.
- Invoking
javax.swing.JComponent.setFont
to change the font of a component. The event dispatch thread. As with most Swing methods, it is not safe to invokesetFont
from any other thread.- Invoking
javax.swing.text.JTextComponent.setText
to change the text of a component. This method is documented as thread-safe, so it can be invoked from any thread.Question 2: One thread is not the preferred thread for any of the tasks mentioned in the previous question. Name this thread and explain why its applications are so limited.
Answer 2: The initial threads launch the first GUI task on the event dispatch thread. After that, a Swing program is primarily driven by GUI events, which trigger tasks on the event dispatch thread and the worker thread. Usually, the initial threads are left with nothing to do.Question 3:
SwingWorker
has two type parameters. Explain how these type parameters are used, and why it often doesn't matter what they are.
Answer 3: The type parameters specify the type of the final result (also the return type of thedoInBackground
method) and the type of interim results (also the argument types forpublish
andprocess
). Many background tasks do not provide final or interim results.
Question 1: Modify theexample so that it pauses 5 seconds between "coin flips." If the user clicks the "Cancel", the coin-flipping loop terminates immediately.
Flipper
Answer 1: See the source code for. The modified program adds a delay in the central
Flipper2
doInBackground
loop:Theprotected Object doInBackground() { long heads = 0; long total = 0; Random random = new Random(); while (!isCancelled()) { try { Thread.sleep(5000); } catch (InterruptedException e) { //Cancelled! return null; } total++; if (random.nextBoolean()) { heads++; } publish(new FlipPair(heads, total)); } return null; }try ... catch
causesdoInBackground
to return if an interrupt is received while the thread is sleeping. Invokingcancel
with an argument oftrue
ensures that an interrupt is sent when the task is cancelled.