how to run a class in java eclipse code example
Example 1: run a java class without main method
//This is prior to Java 7
class StaticInitializationBlock{
static{
System.out.println("class without a main method");
System.exit(0);
}
}
Example 2: java run class file
java -cp ./ {NAME}