Non -static main method in java class
807580Nov 6 2009 — edited Nov 6 2009Hi GM to all
My question is "Does non static main method exist in java class?"
Ex
class Pro
{
public void main(String args[])
{
Pro p=new Pro();
system.out.println("Hello World");
p.main();
}
}