What is stop(), suspend(), resume() method?

Answers were Sorted based on User's Feedback



What is stop(), suspend(), resume() method?..

Answer / kruthi

stop(), suspend() and resume() are the methods used for
thread implementation.
stop() - terminate the thread execution,
Once a thread is stopped, it cannot be restarted with the
start() command, since stop() will terminate the execution
of a thread. Instead you can pause the execution of a
thread with the sleep() method. The thread will sleep for a
certain period of time and then begin executing when the
time limit is reached. But, this is not ideal if the thread
needs to be started when a certain event occurs. In this
case, the suspend() method allows a thread to temporarily
cease executing.
resume() method allows the suspended thread to start again.

Is This Answer Correct ?    77 Yes 3 No

What is stop(), suspend(), resume() method?..

Answer / ravikiran

stop(),suspend() resume() methods are deprecated used for
inter thread communication
stop will stop the exceution of thread
suspend will temporarily suspends the thread execution
resume will invoke the suspended threads for execution

Is This Answer Correct ?    46 Yes 3 No

What is stop(), suspend(), resume() method?..

Answer / mohammed salim

stop(), suspend(), resume() methods are deprecated in the
jdk1.2

Is This Answer Correct ?    17 Yes 14 No

Post New Answer

More Core Java Interview Questions

What is a boolean expression in java?

0 Answers  


what is check p object in java

1 Answers   TCS,


What is the relationship between clipping and repainting under awt?

0 Answers  


What is java literals?

0 Answers  


what is the difference b/w design pattern and architecture

4 Answers   Covansys,






Which sort is best in java?

0 Answers  


Does Java support multiple Inheritance?

12 Answers  


Which of these methods belong to Thread & Object class? join, yield, sleep, wait, notify

3 Answers   Ericsson,


Difference between a Scrollbar and a ScrollPane?

1 Answers  


What method is used to know the status of Checkbox(i.e it is checked or unchecked)?

1 Answers  


What does the three dot emoji mean?

0 Answers  


What is classname class in java?

0 Answers  


Categories