what are depricated methods in threads and explain the
lifecycle methods
Answers were Sorted based on User's Feedback
Answer / dara
There are two deprecated methods in threads.
1.resume
2.suspend.
life cycle of methods of thread.
1.ready to run(start() method)
2.run(run() method)
3.suspend(wait() or sleep() method)
4.resume(notify() or notifyall() method)
5.death.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / prerana
The depricated methods in threads are
1. stop
2. suspend
3. Resume
Life cycle of thread
A thread can be only in one of the five states
1. New (Not alive)
2. Runnable (alive)
3. Running
4. Waiting/Blocking/Sleeping
5. Dead
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / ravikiran
stop(),suspend(),resume()
start()---will start a new thread of execution nd thread
will be in runnable state
run()-----will run the current thread of execution
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / ejp
Good grief. Doesn't anybody read the Javadoc? There are
*six* deprecated methods in java.lang.Thread.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / ravichandra
In threads two ways to create threads.1.by extends the
class
2.implements runnable interface
in threads the following methods are called life cycle
methods
1.start 2.run 3.dead
| Is This Answer Correct ? | 2 Yes | 2 No |
What is the difference between a synchronized method and a synchronized block?
how a programmer confirms that the data submitted has been succesfully inserted into the database(either oracle or my sql).. How a programmer confirm if there is any problem with the program he wrote for insertion... ANS:--- >executeupdate method is having boolean return type, if anything goes wrong in data insertion or data updation, it would return false. otherwise, if it successfully inserts data into the database, it would return true NOW HOW TO I CHECK IN MY DURING EXECUTION WHETHER IT RETURNS TRUE OR FALSE... WELL IT WILL DISPLAY ANY MESSAGE OR NOT
What is an array and a vector? How they different from each other?
what is use of business objects?
what is instanceof operator used in java?
Difference between start() and run() method of thread class?
What is an immutable object? How do you create one in java?
take an array with -ve and +ve value both.find out the nearest value of 0(zero).if two values are same like(-2 and +2)then extract +2 is nearest of 0(zero).
Difference in the use of print, println, and printf.
What is a class ?
What is a blocking method in Java?
why are there separate wait and sleep methods? : Java thread