while creating thread why we extend thread class
Answers were Sorted based on User's Feedback
Answer / jayaprasad
calling the Thread class methods like start().
Threads can be created in two ways
1) extends Thread class
2) implementing Runnable interface.
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / pamal janveja
To create User Defined thread, We requires features of thread
and java provide us Thread class.
We simply over right its run method and called this by start method which internally call to run method.
Similarly using other methods of Thread class , we can create,access and delete user defined thread.
Note:- Without Thread class or Runnable interface , We can not create User defined Thread.
| Is This Answer Correct ? | 6 Yes | 0 No |
Why sleep()is in Thread and wait() in Object class? Why can't I have both in one class or vice versa?
In which order the iterator iterates over collection?
Can we initialize the final blank variable?
Tell us something about an iterator.
What is difference between final and finally in java?
is it possible to add a object in a HASHMAP
please write java program of instanceOf keyword implementation
What is a Presistent Object?
0 Answers InfoAxon Technologies,
does java support default argument in Method?
What do you mean by flow of struts?
what is the use of custom tags? with example?
What is scope & storage allocation of global and extern variables? Explain with an example