In howmany ways a thread can be created?

Answers were Sorted based on User's Feedback



In howmany ways a thread can be created?..

Answer / harish

There are two different ways to create a Thread. One is
extends Thread class and implement Runnable Interface.
Better to go for Runnable interface. It will have a method
run(). You should override in the sub class. Even, you
can extend another class to the same thread class.

Is This Answer Correct ?    3 Yes 0 No

In howmany ways a thread can be created?..

Answer / rajshekhar

There are 2 ways to create a thread
1.By extending thread class
2.and the second one is by implementing runnable
interface.among the two the second one is more common and
better to use.

Is This Answer Correct ?    3 Yes 1 No

In howmany ways a thread can be created?..

Answer / ranganathkini

1. Extending the Thread class
2. Implementing Runnable interface in a class and then
passing its reference to a new Thread.
3. Creating an anonymous class to extend the Thread class.
4. Creating an anonymous class to implement the Runnable
interface and then passing its reference to a new Thread.

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More Advanced Java Interview Questions

What is the purpose of the wait(), notify(), and notifyall() methods?

0 Answers  


How to determine applet?s height and width?

1 Answers  


What is the difference between RMI and Corba?

0 Answers   Infotech,


When you will synchronize your code?

2 Answers  


what is a dirty read?

1 Answers  






In RMI, inorder to sent the stub reference to the client, is we have to load the server object first into the memory or can we directly sent reference to the client?

0 Answers  


How to send a request to garbage collector?

3 Answers  


Which javutil classes and interfaces support event handling?

0 Answers  


What is diffennce between AWT & SWING?

4 Answers  


How database connectivity in XML is achieved?

0 Answers  


difference between  ejb,struts,hibernate,spring and jsp

0 Answers  


why static class in java

0 Answers   Infotech, SunGard,


Categories