What will happen when you attempt to compile and run the following code?
How will a b.run(); a valid condition. instead of b.start();
public class Bground extends Thread{
public static void main(
String argv[]){
Bground b = new Bground();
b.run();
}
public void start(){
for (int i = 0; i <10; i++){
System.out.println("Value of i = " + i);
}
}
}
1) A compile time error indicating that no run method is defined for the
Thread class
2) A run time error indicating that no run method is defined for the Thread class
3) Clean compile and at run time the values 0 to 9 are printed out
4) Clean compile but no output at runtime