Question: PLEASE HELP ASAP!!!! WITH JAVA CODING What is wrong with following program? How can you fix it? Don't rewrite whole code , just parts which
PLEASE HELP ASAP!!!! WITH JAVA CODING
What is wrong with following program? How can you fix it? Don't rewrite whole code , just parts which you find errornous and rectified version public class SimpleThread implements Runnable {
@Override public void run() { for (int i=0;i<2;i++) System.out.print(i); }
}
public class Test {
public static void main(String[] args) { // TODO Auto-generated method stub SimpleThread s= new SimpleThread(); Test t = new Test(); t.call(t); } public void call(SimpleThread t){ t.start(); } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
