is the Main method must needed in java Program?
- by Praveen Chandrasekaran
is the main method is must needed to write a java code.
this my code :
package example;
public class HelloWorld {
public HelloWorld() {
}
public String getHelloWorld() {
return "Hello From Java!";
}
}
it shows error at compilation :
java.lang.NoSuchMethodError: main
Exception in thread "main"