executing as a separate
thread.
68. Name two subclasses of the TextComponent class.
TextField and TextArea
69. What is the advantage of the eventdelegation model over the earlier
eventinheritance model?
The eventdelegation model has two advantages over the eventinheritance
model. First, it enables
event handling to be handled by objects other than the ones that generate
the events (or their
containers). This allows a clean separation between a component's design
and its use. The other
advantage of the eventdelegation model is that it performs much better in
applications where many
events are generated. This performance improvement is due to the fact that
the eventdelegation model
does not have to repeatedly process unhandled events, as is the case of the
eventinheritance model.
70. Which containers may have a MenuBar?
Frame
71. How are commas used in the initialization and iteration parts of a for
statement?
Commas are used to separate multiple statements within the initialization
and iteration parts of a for
statement.
72. What is the purpose of the wait(), notify(), and notifyAll() methods?
The wait(),notify(), and notifyAll() methods are used to provide an efficient
way for threads to wait for a
shared resource. When a thread executes an object's wait() method, it
shared resource. When a thread executes an object's wait() method, it
enters the waiting state. It only
enters the ready state after another thread invokes the object's notify() or
notifyAll() methods.
73. What is an abstract method?
Do'stlaringiz bilan baham: |