1。只是赋值
2。this,关键字,代表TwoThread2
3。
public void start()Causes this thread to begin execution; the Java Virtual Machine calls the run method of this thread. 
The result is that two threads are running concurrently: the current thread (which returns from the call to the start method) and the other thread (which executes its run method).