I am currently thinking about how to design a multithreading system in Java that needs to do some heavy network processing and database storage. The program will launch thre
Yes a thread can launch another thread, and that thread can launch thread(s) and on and on...
In the run() method of a thread - you can create and start other threads.
run()