How to call a method with a separate thread in Java?
17:22 15 Aug 2010

let's say I have a method doWork(). How do I call it from a separate thread (not the main thread).

java multithreading