To make an object to begin executing as a separate thread,
what method is used?
Answers were Sorted based on User's Feedback
Answer / anonymous
Public void run() ---- method should be used.
myClass mc= new myClass();
Thread t1= new Thread(mc);
thatClass tc= new thatClass();
Thread t2= new Thread(tc);
t1.run();
t2.run();
Two Objects
Two Threads
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / devarathnam c,kotagudibanda(po
Hi...
public void run();method in Runnable interface,which only
one method in Runnable interface.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is JTS?
Which Taglibraury you used in your project? plz send me ans....which we r using generally
Where we can write Rmi registry in the code, without having to write it at the command prompt?
What is Bootstrapping in RMI?
What must a class do to implement an interface?
How will the struts know which action class to call when you submit a form?
What is RRL?
What are the JSP implicit objects ?
What is multi-tasking? Types?
How we set Bean Id when we are creating web application using SpringMVC and Hibernet Integration
diff mvc1 and mvc2 wahts is mean by servlet chaining?
What are the ways to define classes that can be run as threads?