×

Loading...

you mean the Thread is refered by the JVM. Ok! Let's try an other example

import javax.swing.*;
public class testf
{
public static void main(String arg[])
{
JFrame f;

(new JFrame("god")).show();

System.out.println("Hello");

}

}
Report