can we run a run() method with out using a start() method in a program?
public class A extends Thread
{
public void run()
{
System.out.println(" i will execute any way");
}
public static void main(string args[])
{
A a=new A();
a.run(); // no start method
}
}