Answers for "how to run a class in java eclipse"

2

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);
   }
}
Posted by: Guest on July-21-2020
0

java run class file

java -cp ./ {NAME}
Posted by: Guest on August-26-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language