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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!