What are different ways to create threads in Java?
Risposta di colloquio
Anonimo
19 ago 2011
There are 2 methods for creating threads in Java:
1-) Extending class Thread.
2-) Implementing interface Runnable.
And in either case provide an implementation for the run method.