while creating thread why we extend thread class

Answers were Sorted based on User's Feedback



while creating thread why we extend thread class..

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

while creating thread why we extend thread class..

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

Post New Answer

More Core Java Interview Questions

How big is a gigabyte?

0 Answers  


When finalize method is called?

3 Answers  


What is the super void?

0 Answers  


Can you override static methods?

0 Answers  


What are the types of java languages?

0 Answers  


What is the use of parseint in java?

0 Answers  


what are the high-level thread states? : Java thread

0 Answers  


How many ways can we create the string object?

0 Answers  


Is cout buffered?

0 Answers  


Which of the following is not an isolation level in the JDBC

0 Answers   CTS,


Can we create a class inside a class in java?

0 Answers  


How does the java compiler work?

0 Answers  


Categories