After invoking the wait method on an object, obj1, a
thread, T1, will remain in the wait set of obj1 until which of the following occurs?
a. Another thread invokes the notify method on the object, obj1, and T1 is selected to move out of the wait set
b. Another thread invokes the notifyAll method on the object
c. Another thread invokes the resume method on thread T1
d. Another thread interrupts thread T1
e. The priority of thread T1 is increased
f. A specified timeout period has elapsed
g. Another thread invokes the join method on thread T1
Answer : A, B, D, F
Could anyone provides an example to demostrate how a thread interrupts thread T1? Using notify or notifyAll is the interrupts? Or using other methods?
Thanks,
David