My JavaApplication class extends the Thread class, but does not having run method. If I run the below code how does start method works and behaves?
public class JavaApplication1 extends Thread {
// public void run(){}
public static void main(String[] args) {
JavaApplication ja = new JavaApplication();
ja.start();
}
}
Could anyone give some advise on this?