what is the replacement method of stop() of thread

Answers were Sorted based on User's Feedback



what is the replacement method of stop() of thread..

Answer / swamireddy

SUSPEND()
because one thread apply suspend()
function.this particular thread is automatically
killed.upto when the particular thread is apply the resume
() function.

Is This Answer Correct ?    6 Yes 0 No

what is the replacement method of stop() of thread..

Answer / swamireddy

SUSPEND()
because one thread apply suspend()
function.this particular thread is automatically
killed.upto when the particular thread is apply the resume
() function.the thread is running.

Is This Answer Correct ?    7 Yes 2 No

what is the replacement method of stop() of thread..

Answer / ravikiran chhaduvula

wait() method from java.lang.Object class is the
replacement for the legacy stop() method

Is This Answer Correct ?    4 Yes 4 No

what is the replacement method of stop() of thread..

Answer / mahesh

their is no replacement for stop(),
but their is a alternative approach is their by using
semaphore boolean conditions.

Is This Answer Correct ?    1 Yes 1 No

what is the replacement method of stop() of thread..

Answer / aslam

write a condition to complete the run method.

Is This Answer Correct ?    0 Yes 1 No

what is the replacement method of stop() of thread..

Answer / umesh

interrupt() method

Is This Answer Correct ?    0 Yes 1 No

what is the replacement method of stop() of thread..

Answer / domnic

the answer is join();
join makes your program wait till the thread upon which it
is called dies.This functionality is same as what done by
the deprecated method stop();

Is This Answer Correct ?    2 Yes 5 No

what is the replacement method of stop() of thread..

Answer / guest

sleep()

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More Core Java Interview Questions

What is data structure in java?

0 Answers  


if arraylist size is increased from initial size what is the size of arraylist...suppose initial is 100 , if i add 101 element what is the size...

10 Answers  


Can an interface be final?

0 Answers  


Difference between class#getinstance() and new operator ?

0 Answers  


What is a method signature java?

0 Answers  






Why do we use bufferedreader?

0 Answers  


How many bits are allocated to represent character of character sets - Unicode, ASCII, UTF-16, UTF-8?

1 Answers  


where lives in jvm

5 Answers  


Can we create an object of private class?

0 Answers  


How many types of gc are there in java?

0 Answers  


what invokes a threads run() method? : Java thread

0 Answers  


What is linkedlist in java?

0 Answers  


Categories