Если вы вызываете метод run()
напрямую, вы не используете многопоточность, поскольку метод run()
выполняется как часть потока вызывающего.
Если вы вызовете метод start()
в потоке, виртуальная машина Java вызовет метод run (), и два потока будут выполняться одновременно - текущий поток (main()
в вашем примере) и другой поток (Runnable * 1007)* в вашем примере).
Посмотрите на исходный код метода start()
в Класс потока
/**
* Causes this thread to begin execution; the Java Virtual Machine
* calls the <code>run</code> method of this thread.
* <p>
* The result is that two threads are running concurrently: the
* current thread (which returns from the call to the
* <code>start</code> method) and the other thread (which executes its
* <code>run</code> method).
* <p>
* It is never legal to start a thread more than once.
* In particular, a thread may not be restarted once it has completed
* execution.
*
* @exception IllegalThreadStateException if the thread was already
* started.
* @see #run()
* @see #stop()
*/
public synchronized void start() {
/**
* This method is not invoked for the main method thread or "system"
* group threads created/set up by the VM. Any new functionality added
* to this method in the future may have to also be added to the VM.
*
* A zero status value corresponds to state "NEW".
*/
if (threadStatus != 0)
throw new IllegalThreadStateException();
group.add(this);
start0();
if (stopBeforeStart) {
stop0(throwableFromStop);
}
}
private native void start0();
В приведенном выше коде вы не видитевызов метода run()
.
private native void start0()
отвечает за вызов метода run()
.JVM выполняет этот собственный метод.