I'm trying to get this down absolutely correctly. I'm learning about threads and the different ways to implement them (Runnable vs.
Thread class). My question is this: If I have a class, and IN that class I 'spin off' a new thread, then do I have two threads? Is the 'running' class considered an anonymous thread before the new thread I create begins execution? I just want to make sure. It seems to me that a
Java program, since it's taking resources, etc., would by default be a thread - just an unnamed one. Any answers or insight?